Skip to content

Commit f576570

Browse files
B4nanclaude
andauthored
chore: remove unused NPM_TOKEN from CI workflows (#2323)
## Summary - Removed `NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}` from all 4 CI workflow files (8 occurrences total) - All `@apify/*` packages resolve to the public npm registry (`registry.npmjs.org`) and `.npmrc` has no private registry config, so this token was never needed ## Test plan - [ ] CI workflows pass without the token (build, lint, openapi, lychee jobs) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
1 parent c813611 commit f576570

4 files changed

Lines changed: 0 additions & 14 deletions

File tree

.github/workflows/docs.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ jobs:
3535
npm run build
3636
env:
3737
APIFY_SIGNING_TOKEN: ${{ secrets.APIFY_SIGNING_TOKEN }}
38-
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
3938
INTERCOM_APP_ID: ${{ secrets.INTERCOM_APP_ID }}
4039
SEGMENT_TOKEN: ${{ secrets.SEGMENT_TOKEN }}
4140

.github/workflows/lychee.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ jobs:
2828
npm run build
2929
env:
3030
APIFY_SIGNING_TOKEN: ${{ secrets.APIFY_SIGNING_TOKEN }}
31-
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
3231
INTERCOM_APP_ID: ${{ secrets.INTERCOM_APP_ID }}
3332
SEGMENT_TOKEN: ${{ secrets.SEGMENT_TOKEN }}
3433

.github/workflows/openapi-ci.yaml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,6 @@ jobs:
2626

2727
- name: Install dependencies
2828
run: npm ci --force
29-
env:
30-
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
3129

3230
- name: Lint with Redocly
3331
run: npm run openapi:lint:redocly -- --format=github-actions
@@ -58,8 +56,6 @@ jobs:
5856

5957
- name: Install dependencies
6058
run: npm ci --force
61-
env:
62-
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
6359

6460
- name: Build bundles
6561
run: npm run openapi:build
@@ -93,8 +89,6 @@ jobs:
9389

9490
- name: Install dependencies
9591
run: npm ci --force
96-
env:
97-
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
9892

9993
- name: Download bundles
10094
uses: actions/download-artifact@v8

.github/workflows/test.yaml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,6 @@ jobs:
2626
2727
- name: Install Dependencies
2828
run: npm ci --force
29-
env:
30-
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
3129

3230
- run: npm run build
3331
env:
@@ -157,8 +155,6 @@ jobs:
157155
158156
- name: Install Dependencies
159157
run: npm ci --force
160-
env:
161-
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
162158

163159
- name: List and Lint Changed Markdown Files
164160
env:
@@ -190,7 +186,5 @@ jobs:
190186
191187
- name: Install Dependencies
192188
run: npm ci --force
193-
env:
194-
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
195189

196190
- run: npm run lint:code

0 commit comments

Comments
 (0)