Skip to content

Commit fdafc3a

Browse files
committed
ci: pass token in more places
1 parent 8079cc1 commit fdafc3a

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ jobs:
2323

2424
- name: 📦 Install dependencies
2525
run: pnpm install
26+
env:
27+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2628

2729
- name: 🔠 Lint project
2830
run: pnpm lint

.github/workflows/size.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ jobs:
2929

3030
- name: 📦 Install dependencies
3131
run: pnpm install
32+
env:
33+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3234

3335
- name: 🛠 Build project
3436
run: pnpm build
@@ -65,7 +67,9 @@ jobs:
6567
node-version: lts/*
6668

6769
- name: 📦 Install dependencies
68-
run: pnpm install
70+
run:
71+
env:
72+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6973

7074
- name: 🛠 Build project
7175
run: pnpm build

0 commit comments

Comments
 (0)