25 lines
No EOL
314 B
YAML
25 lines
No EOL
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 |