Skip to content

Commit

Permalink
test on windows-latest
Browse files Browse the repository at this point in the history
  • Loading branch information
mmkal committed Aug 27, 2024
1 parent 98fb5ae commit 7c32612
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,20 @@ on: [push, pull_request]

jobs:
run:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- run: corepack enable
- run: pnpm install
- run: pnpm lint
if: matrix.os == 'ubuntu-latest'
- run: pnpm test -- --coverage
- name: Coverage
uses: codecov/codecov-action@v3
if: matrix.os == 'ubuntu-latest'
create_tgz:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 7c32612

Please sign in to comment.