There was an error while loading. Please reload this page.
1 parent b41d0f9 commit fd7a3ddCopy full SHA for fd7a3dd
1 file changed
.github/workflows/ci.yml
@@ -68,6 +68,12 @@ jobs:
68
- name: Install dependencies
69
run: pnpm install --frozen-lockfile
70
71
+ - name: Cache Shellcheck
72
+ uses: actions/cache@v5
73
+ with:
74
+ path: node_modules/shellcheck/bin/
75
+ key: shellcheck-${{ runner.os }}-${{ hashFiles('pnpm.lock.yaml') }}
76
+
77
- name: Run Tests
78
env:
79
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -76,6 +82,11 @@ jobs:
82
build:
83
if: github.ref == 'refs/heads/master' && github.event_name == 'push'
84
needs: [lint, test]
85
+ permissions:
86
+ contents: read
87
+ pages: write
88
+ id-token: write
89
90
runs-on: ubuntu-latest
80
91
steps:
81
92
- name: Checkout
0 commit comments