Skip to content

Commit

Permalink
ci: run test suite on windows (#346)
Browse files Browse the repository at this point in the history
  • Loading branch information
danielroe authored Oct 14, 2024
1 parent 4d22f70 commit 6589079
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@ on:

jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -47,7 +50,7 @@ jobs:
run: pnpm run lint

- name: 🧪 Test project
run: pnpm test -- --coverage
run: pnpm test

- name: 🛠 Build project
run: pnpm build
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"prepack": "pnpm build",
"prepublishOnly": "pnpm lint && pnpm test",
"release": "bumpp && npm publish",
"test": "vitest run",
"test": "vitest run --coverage",
"test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit"
},
"dependencies": {
Expand Down

0 comments on commit 6589079

Please sign in to comment.