frontend/.gitlab-ci.yml
2020-03-07 12:47:43 +01:00

24 lines
291 B
YAML

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