Skip to content

Commit 359d05a

Browse files
committed
fix workflow not actually settings PATH variable
1 parent 29e9174 commit 359d05a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
- { name: Checkout, uses: actions/checkout@v4 }
1010
- { name: Setup Node.js environment, uses: actions/setup-node@v4, with: { node-version: ^18 || >=20 } }
1111
- { name: Setup pnpm, uses: pnpm/action-setup@v3, with: { version: ^9.0.1, run_install: true } }
12-
- run: export PATH=$PWD/node_modules/.bin:$PATH
12+
- run: echo $PWD/node_modules/.bin:$PATH > $GITHUB_PATH
1313
- run: scripts/package.sh
1414
- run: scripts/lint.sh
1515
- run: vitest run

0 commit comments

Comments
 (0)