core/.gitlab-ci.yml
2019-09-02 22:08:44 +02:00

22 lines
247 B
YAML

image: node:latest
stages:
- build
- test
cache:
paths:
- node_modules/
install_dependencies:
stage: build
script:
- npm install
artifacts:
paths:
- node_modules/
testing_testing:
stage: test
script: npm test