26 lines
375 B
YAML
26 lines
375 B
YAML
image: node:latest
|
|
|
|
stages:
|
|
- build
|
|
- test
|
|
|
|
build:
|
|
stage: build
|
|
script:
|
|
- npm install
|
|
- npm run build
|
|
only:
|
|
- merge_requests
|
|
artifacts:
|
|
paths:
|
|
- node_modules
|
|
|
|
test:
|
|
stage: test
|
|
script:
|
|
- npm run test
|
|
only:
|
|
- merge_requests
|
|
artifacts:
|
|
paths:
|
|
- node_modules |