Skip to content

Commit

Permalink
ci(build-main): mark macos runners as experimental and allow failures…
Browse files Browse the repository at this point in the history
… on these runners
  • Loading branch information
SuperITMan committed Aug 16, 2021
1 parent 1f5e07d commit 9ada010
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,21 @@ jobs:
build-and-test:
name: Build and test on Node.js ${{ matrix.node_version }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
node_version: ["12", "14"]
os: [ubuntu-latest, macOS-latest]
os: [ubuntu-latest]
experimental: [false]
# Mark following configurations as "experimental" and allow to continue in case of error
# See documentation: https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#example-including-new-combinations
include:
- os: macos-latest
node_version: 12
experimental: true
- os: macos-latest
node_version: 14
experimental: true

steps:
# Some actions should be executed only in one environment.
Expand Down

0 comments on commit 9ada010

Please sign in to comment.