Skip to content

Commit ac550ac

Browse files
committed
FIXUP
1 parent 8f54533 commit ac550ac

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/nodejs-16.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ jobs:
2323
- name: Patch vitest imports
2424
run: |
2525
for f in test/*.test.ts; do [ -e "$f" ] || exit 0; sed --version >/dev/null 2>&1 && sed -i "s@'vite-plus/test'@'vitest'@g" "$f" || sed -i '' "s@'vite-plus/test'@'vitest'@g" "$f"; done
26-
npm install -D vitest@3
26+
jq 'del(.overrides)' package.json > package.json.tmp && mv package.json.tmp package.json
27+
npm install -D vitest@3 vite@7
2728
rm -rf vite.config.ts
2829
- run: NODE_OPTIONS="--require ./test/patch-for-node16-18.cjs" npx vitest && npm run build && npm pack && npx attw --pack
2930
- run: npm run build

0 commit comments

Comments
 (0)