Skip to content

Commit

Permalink
ci: add windows check
Browse files Browse the repository at this point in the history
  • Loading branch information
LichKing-2234 committed Oct 27, 2023
1 parent f128b9d commit 60ef13a
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@ on:

jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
platform: [ ubuntu, windows ]
runs-on: ${{ matrix.platform }}-latest
steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -30,7 +33,10 @@ jobs:
run: yarn typecheck

test:
runs-on: ubuntu-latest
strategy:
matrix:
platform: [ ubuntu, windows ]
runs-on: ${{ matrix.platform }}-latest
steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -42,7 +48,10 @@ jobs:
run: yarn test --maxWorkers=2 --coverage

build-library:
runs-on: ubuntu-latest
strategy:
matrix:
platform: [ ubuntu, windows ]
runs-on: ${{ matrix.platform }}-latest
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down

0 comments on commit 60ef13a

Please sign in to comment.