24 lines
300 B
YAML
24 lines
300 B
YAML
image: node:latest
|
|
|
|
stages:
|
|
- build
|
|
- test
|
|
|
|
before_script:
|
|
- npm install
|
|
|
|
build:
|
|
stage: build
|
|
script:
|
|
- echo "Run build project"
|
|
- npm run build
|
|
only:
|
|
- merge_requests
|
|
|
|
test:
|
|
stage: test
|
|
script:
|
|
- echo "Run test project"
|
|
- npm run test
|
|
only:
|
|
- merge_requests |