frontend/.gitlab-ci.yml

24 lines
313 B
YAML
Raw Normal View History

2020-03-07 09:54:42 +00:00
image: node:latest
stages:
- build
- test
cache:
paths:
2020-03-07 14:12:52 +00:00
- smart-hut/node_modules/
2020-03-07 09:54:42 +00:00
install_dependencies:
stage: build
script:
2020-03-07 11:47:43 +00:00
- cd smart-hut
2020-03-07 12:07:32 +00:00
- yarn install
2020-03-07 09:54:42 +00:00
artifacts:
2020-03-07 11:42:57 +00:00
paths:
2020-03-07 14:12:52 +00:00
- smart-hut/node_modules/
2020-03-07 09:54:42 +00:00
testing_testing:
stage: test
2020-03-07 11:38:53 +00:00
script:
2020-03-07 11:47:43 +00:00
- cd smart-hut
2020-03-07 12:07:32 +00:00
- yarn test