frontend/.gitlab-ci.yml
2020-03-07 13:07:32 +01:00

25 lines
314 B
YAML

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