frontend/.gitlab-ci.yml
2020-03-07 10:54:42 +01:00

21 lines
246 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