We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19602d2 commit 8bb9bb0Copy full SHA for 8bb9bb0
.github/workflows/ci.yml
@@ -34,6 +34,9 @@ jobs:
34
- name: Install dependencies
35
if: ${{ github.actor != 'dependabot[bot]' || github.ref == 'refs/heads/main' }}
36
run: yarn --immutable
37
+ - name: Reset yarn.lock (due to dependabot incompatibility with yarn 3)
38
+ if: ${{ github.actor == 'dependabot[bot]' && github.ref != 'refs/heads/main' }}
39
+ run: "git checkout HEAD~1 yarn.lock"
40
- name: Install dependencies & update yarn.lock (dependabot)
41
if: ${{ github.actor == 'dependabot[bot]' && github.ref != 'refs/heads/main' }}
42
run: "yarn install && git stage yarn.lock && git commit -m 'chore: update yarn.lock' && git push"
0 commit comments