There was an error while loading. Please reload this page.
1 parent e2c6b51 commit 4baeae5Copy full SHA for 4baeae5
1 file changed
.github/workflows/check.yml
@@ -5,13 +5,17 @@ on:
5
pull_request:
6
branches: ["main"]
7
8
+permissions:
9
+ contents: read
10
+
11
concurrency:
12
group: "check-${{ github.head_ref }}"
13
cancel-in-progress: true
14
15
jobs:
16
check:
17
runs-on: ubuntu-latest
18
+ permissions: {}
19
env:
20
NEXT_PUBLIC_SUPABASE_URL: ${{ vars.NEXT_PUBLIC_SUPABASE_URL }}
21
NEXT_PUBLIC_SUPABASE_ANON_KEY: ${{ vars.NEXT_PUBLIC_SUPABASE_ANON_KEY }}
@@ -23,7 +27,7 @@ jobs:
23
27
with:
24
28
bun-version: latest
25
29
- name: Install dependencies
26
- run: bun install
30
+ run: bun install --frozen-lockfile
31
- name: Lint
32
run: bun run lint
33
- name: Type check
0 commit comments