24 lines
No EOL
313 B
YAML
24 lines
No EOL
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 |