Skip to content

Commit d01ed07

Browse files
marc0oloclaude
andcommitted
fix(ci): use ICP_CLI_GITHUB_TOKEN in frontend workflow to avoid icp rate limits
npm run test calls icp network start + icp deploy; icp-cli reads ICP_CLI_GITHUB_TOKEN (not GITHUB_TOKEN) when fetching the network launcher. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 91cd429 commit d01ed07

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/frontend.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
run: bash .github/workflows/provision-frontend-linux.sh
3232
- name: Frontend Tests and Lint
3333
env:
34-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
34+
ICP_CLI_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3535
run: |
3636
set -eExuo pipefail
3737
npm install
@@ -53,7 +53,7 @@ jobs:
5353
bash .github/workflows/provision-frontend-darwin.sh
5454
- name: Frontend Tests and Lint
5555
env:
56-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
56+
ICP_CLI_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5757
run: |
5858
set -eExuo pipefail
5959
npm install

0 commit comments

Comments
 (0)