15 lines
141 B
YAML
15 lines
141 B
YAML
|
image: node:latest
|
||
|
|
||
|
stages:
|
||
|
- test
|
||
|
|
||
|
cache:
|
||
|
paths:
|
||
|
- node_modules/
|
||
|
|
||
|
test:
|
||
|
stage: test
|
||
|
script:
|
||
|
- npm install -D
|
||
|
- npm test
|