Skip to content

Commit e56bd44

Browse files
committed
chore: fix ci
1 parent e8be640 commit e56bd44

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,7 @@ jobs:
6262
strategy:
6363
matrix:
6464
node: [16.x, 18.x]
65-
# Disable Windows because it is quite slow (test timeout)
66-
# os: [ubuntu-latest, windows-latest, macos-latest]
67-
os: [ubuntu-latest, macos-latest]
65+
os: [ubuntu-latest, windows-latest, macos-latest]
6866
fail-fast: false
6967

7068
steps:

test/vitest.config.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import { defineConfig } from "vite";
33

44
export default defineConfig({
55
test: {
6-
testTimeout: 100000,
6+
// Big enough?!
7+
testTimeout: 1000000,
78
},
89
});

0 commit comments

Comments
 (0)