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 8f92d26 commit 9987a85Copy full SHA for 9987a85
.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
@@ -52,7 +55,7 @@ jobs:
52
55
run: pnpm build
53
56
54
57
- name: 🧪 Test project
- run: pnpm test -- --coverage
58
+ run: pnpm test
59
60
- name: 💪 Test types
61
run: pnpm test:types
package.json
@@ -45,7 +45,7 @@
45
"prepare": "husky install",
46
"prepublishOnly": "pnpm lint && pnpm test",
47
"release": "bumpp && pnpm publish",
48
- "test": "vitest run",
+ "test": "vitest run --coverage",
49
"test:types": "tsc --noEmit"
50
},
51
"dependencies": {
0 commit comments