Skip to content

Commit

Permalink
Introduce a matrix with latest Ubuntu and macOS to test the build on …
Browse files Browse the repository at this point in the history
…macOS as well

Once harttle#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 May 29, 2023
1 parent 8c91b47 commit fec7db0
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@ on: [push, pull_request]
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 +38,4 @@ jobs:
if: failure()
with:
name: npm-logs
path: ~/.npm/_logs
path: ~/.npm/_logs

0 comments on commit fec7db0

Please sign in to comment.