Skip to content

Commit

Permalink
ci: Run on MacOS and Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
seanpoulter committed Mar 22, 2024
1 parent 5988360 commit ca22fd0
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/test.yml
Expand Up @@ -8,17 +8,25 @@ on:

jobs:
linux:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['12.x', '14.x', '16.x', '18.x', '20.x']
java: ['11']
os: [ubuntu-latest]
node-version: [12, 14, 16, 18, 20]
java-version: [11]
include:
- os: macos-latest
node-version: 20
java-version: 11
- os: windows-latest
node-version: 20
java-version: 11
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: ${{ matrix.java }}
java-version: ${{ matrix.java-version }}
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
Expand Down

0 comments on commit ca22fd0

Please sign in to comment.