GitLab CI: only run deps if yarn.lock changes

environments/review-ci-only-w8fy5s/deployments/77
Alex Gleason 2 years ago
parent 808d3441ac
commit 890a3f2ec5
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7

@ -18,6 +18,9 @@ stages:
deps:
stage: deps
script: yarn install --ignore-scripts
only:
changes:
- yarn.lock
lint-js:
stage: test
@ -49,6 +52,7 @@ jest:
- "**/*.json"
- "app/soapbox/**/*"
- "webpack/**/*"
- "custom/**/*"
- "jest.config.js"
- "package.json"
- "yarn.lock"

Loading…
Cancel
Save