frontend/.gitlab-ci.yml
2020-03-07 15:12:52 +01:00

24 lines
313 B
YAML

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