frontend/.gitlab-ci.yml
2020-03-07 12:38:53 +01:00

23 lines
282 B
YAML

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