Skip to content

Commit

Permalink
Make testing matrix simpler (#1173)
Browse files Browse the repository at this point in the history
I'm not sure we need to run such a complex test matrix
because it unfortunately makes CI pretty slow. Here I propose
removing node v12 and MacOS.
  • Loading branch information
johno committed Jul 22, 2020
1 parent d0059c8 commit d08c5b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Expand Up @@ -7,8 +7,8 @@ jobs:
name: Build and Test on ${{ matrix.os }} with Node.js ${{ matrix.node }}
strategy:
matrix:
os: [macOS-latest, ubuntu-latest, windows-latest]
node: [10, 12, 14]
os: [ubuntu-latest, windows-latest]
node: [10, 14]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
Expand Down

0 comments on commit d08c5b6

Please sign in to comment.