CI
The snippet can be accessed without any authentication.
Authored by
Kyle Davies
Edited
default:
image: node:latest
stages:
- build
- test
build:
stage: build
script:
- echo "Start Building App"
- npm install
- npm build
- echo "Build successful!"
test:
stage: test
script:
- echo "Testing App"
- npm install
- CI=true npm test
- echo "Test successful!"
Please register or sign in to comment