Skip to content

Commit 74258d9

Browse files
committed
Squashed commit of the following:
commit 0cd88f3 Author: LastLeaf <[email protected]> Date: Mon Aug 18 17:39:01 2025 +0800 fix: actions commit 01310aa Author: LastLeaf <[email protected]> Date: Mon Aug 18 17:36:23 2025 +0800 fix: actions
1 parent 9f77d9c commit 74258d9

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

.github/workflows/npm-test.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,11 @@ jobs:
2222
with:
2323
node-version: 22
2424
cache: 'npm'
25+
env:
26+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
2527
- run: npm ci
28+
env:
29+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
2630
- run: xvfb-run -a npm test
2731
if: runner.os == 'Linux'
2832
- run: npm test

.github/workflows/vscode-extension.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,11 @@ jobs:
1414
with:
1515
node-version: 22
1616
cache: 'npm'
17-
- run: npm install
17+
env:
18+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
19+
- run: npm ci
20+
env:
21+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
1822
- run: mkdir -p packages
1923
- run: npx vsce package -o packages
2024
- run: npx vsce publish --packagePath packages/*.vsix

0 commit comments

Comments
 (0)