frontend/.gitlab-ci.yml

21 lines
246 B
YAML
Raw Normal View History

2020-03-07 09:54:42 +00:00
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