Skip to content

Commit

Permalink
Run CI against both Ubuntu and macOS.
Browse files Browse the repository at this point in the history
  • Loading branch information
rwjblue committed Mar 10, 2020
1 parent 2a8002c commit 585ae24
Showing 1 changed file with 24 additions and 4 deletions.
28 changes: 24 additions & 4 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,12 @@ on:

jobs:
test:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [ubuntu-latest, macOS-latest]

steps:
- uses: actions/checkout@v1

Expand Down Expand Up @@ -39,7 +44,12 @@ jobs:


test-no-options:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [ubuntu-latest, macOS-latest]

steps:
- uses: actions/checkout@v1

Expand All @@ -56,7 +66,12 @@ jobs:
- run: volta which yarn

test-specific-volta:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [ubuntu-latest, macOS-latest]

steps:
- uses: actions/checkout@v1

Expand All @@ -76,7 +91,12 @@ jobs:
- run: volta which yarn

test-specific-volta-node-yarn:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [ubuntu-latest, macOS-latest]

steps:
- uses: actions/checkout@v1

Expand Down

0 comments on commit 585ae24

Please sign in to comment.