There was an error while loading. Please reload this page.
1 parent 5e740bd commit 3a44800Copy full SHA for 3a44800
1 file changed
.github/workflows/checks.yaml
@@ -36,16 +36,15 @@ jobs:
36
./*
37
~/.pnpm-store
38
key: ${{ github.sha }}
39
+ - name: Fallback checkout (cache miss)
40
+ if: steps.setup-cache.outputs.cache-hit != 'true'
41
+ uses: actions/checkout@v6
42
- name: Install Node.js
43
uses: actions/setup-node@v6
44
with:
45
node-version: "22.12.0"
46
- name: Setup pnpm
47
uses: pnpm/action-setup@v4
- # Fallback if cache miss (shouldn’t happen as job needs: setup)
- - name: Fallback checkout (cache miss)
- if: steps.setup-cache.outputs.cache-hit != 'true'
48
- uses: actions/checkout@v6
49
- name: Fallback install (cache miss)
50
if: steps.setup-cache.outputs.cache-hit != 'true'
51
run: pnpm install
0 commit comments