Skip to content

Commit

Permalink
feat: introduce a matrix with latest Ubuntu and macOS to test the bui…
Browse files Browse the repository at this point in the history
…ld on macOS as well

Once #615 is merged, the build script should work on macOS just as well as it does on Ubuntu and with this GitHub Actions matrix we can keep ensuring that it continues to work as it should.
  • Loading branch information
TomasHubelbauer authored and harttle committed Jun 3, 2023
1 parent 05c478c commit 82ba548
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ jobs:
check:
name: Check
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down Expand Up @@ -35,4 +39,4 @@ jobs:
if: failure()
with:
name: npm-logs
path: ~/.npm/_logs
path: ~/.npm/_logs

0 comments on commit 82ba548

Please sign in to comment.