Merge branch 'ci-only' into 'develop'

GitLab CI: only run deps if yarn.lock changes

See merge request soapbox-pub/soapbox-fe!1453
This commit is contained in:
Alex Gleason 2022-05-25 19:47:57 +00:00
commit 43176dbbb7

View file

@ -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"