Skip to content

Commit

Permalink
Build on Windows and macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
jozefizso authored Dec 30, 2024
1 parent 1c9646c commit 238319b
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,10 @@ on:

jobs:
build:
runs-on: ubuntu-latest
runs-on: '${{ matrix.os }}-latest'
strategy:
matrix:
os: [ ubuntu, macos, windows ]
node: [ 18, 20, 22 ]
name: Node ${{ matrix.node }} build
steps:
Expand All @@ -37,7 +38,7 @@ jobs:
- name: coveralls
uses: coverallsapp/github-action@v2
with:
flag-name: node-${{ matrix.node }}
flag-name: node-${{ matrix.node }}-${{ matrix.os }}
parallel: true

report:
Expand All @@ -49,4 +50,4 @@ jobs:
uses: coverallsapp/github-action@v2
with:
parallel-finished: true
carryforward: "node-18,node-20,node-22"
carryforward: "node-18-ubuntu,node-20-ubuntu,node-22-ubuntu"

0 comments on commit 238319b

Please sign in to comment.