11 lines
123 B
YAML
11 lines
123 B
YAML
image: node:latest
|
|
|
|
cache:
|
|
paths:
|
|
- node_modules/
|
|
|
|
test:
|
|
before_script:
|
|
- npm install
|
|
script:
|
|
- npm test
|