Skip to content

Commit aa5f33a

Browse files
committed
fix long-path problem on windows tests
1 parent ae568f5 commit aa5f33a

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,5 +38,10 @@ jobs:
3838
with:
3939
node-version: 18
4040
cache: pnpm
41+
- name: Set TEMP to D:/Temp on windows
42+
if: ${{matrix.os}} == windows-latest
43+
run: |
44+
mkdir "D:\\Temp"
45+
echo "TEMP=D:\\Temp" >> $env:GITHUB_ENV
4146
- run: pnpm install --frozen-lockfile
4247
- run: pnpm test

0 commit comments

Comments
 (0)