We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d61468a commit 1a72a59Copy full SHA for 1a72a59
.github/workflows/ci.yml
@@ -32,7 +32,10 @@ jobs:
32
run: pnpm run lint
33
34
test:
35
- runs-on: ubuntu-latest
+ strategy:
36
+ matrix:
37
+ os: [ubuntu-latest, windows-latest]
38
+ runs-on: ${{ matrix.os }}
39
40
steps:
41
- uses: actions/checkout@v4
@@ -70,7 +73,7 @@ jobs:
70
73
run: pnpm dev:prepare
71
74
72
75
- name: 🧪 Test project
- run: pnpm test -- --coverage
76
+ run: pnpm test
77
78
- name: 💪 Test types
79
run: pnpm test:types
package.json
@@ -43,7 +43,7 @@
43
"prepare": "husky install",
44
"prepublishOnly": "pnpm lint && pnpm test",
45
"release": "bumpp && pnpm publish",
46
- "test": "vitest run",
+ "test": "vitest run --coverage",
47
"test:types": "tsc --noEmit"
48
},
49
"dependencies": {
0 commit comments