GitLab CI: install-dependencies --> deps, simplify
This commit is contained in:
parent
1b970d662e
commit
b798f486d0
1 changed files with 4 additions and 8 deletions
|
@ -11,18 +11,14 @@ cache:
|
||||||
- node_modules/
|
- node_modules/
|
||||||
|
|
||||||
stages:
|
stages:
|
||||||
- install
|
- deps
|
||||||
- test
|
- test
|
||||||
- build
|
- build
|
||||||
- deploy
|
- deploy
|
||||||
|
|
||||||
install-dependencies:
|
deps:
|
||||||
stage: install
|
stage: deps
|
||||||
script:
|
script: yarn install --ignore-scripts
|
||||||
- yarn install --ignore-scripts
|
|
||||||
artifacts:
|
|
||||||
paths:
|
|
||||||
- node_modules/
|
|
||||||
|
|
||||||
lint-js:
|
lint-js:
|
||||||
stage: test
|
stage: test
|
||||||
|
|
Loading…
Reference in a new issue