21 lines
205 B
YAML
21 lines
205 B
YAML
|
image: node:latest
|
||
|
|
||
|
stages:
|
||
|
- test
|
||
|
- build
|
||
|
|
||
|
cache:
|
||
|
paths:
|
||
|
- node_modules/
|
||
|
|
||
|
test:
|
||
|
stage: test
|
||
|
script:
|
||
|
- npm install
|
||
|
- npm run test
|
||
|
|
||
|
build:
|
||
|
stage: build
|
||
|
script:
|
||
|
- npm run build
|