Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
build:
strategy:
matrix:
node-version: [12.x, 14.x, 16.x, 17.x]
node-version: [14.x, 16.x, 17.x]
platform:
- os: ubuntu-latest
shell: bash
Expand All @@ -16,6 +16,13 @@ jobs:
shell: bash
- os: windows-latest
shell: powershell
exclude:
# Presumably these worked at some point in the past, but now actions/setup-node gives errors like
# Unable to find Node version '14.x' for platform darwin and architecture arm64.
- node-version: 14.x
platform:
os: macos-latest
shell: bash
fail-fast: false

runs-on: ${{ matrix.platform.os }}
Expand All @@ -25,7 +32,7 @@ jobs:

steps:
- name: Checkout Repository
uses: actions/checkout@v1.1.0
uses: actions/checkout@v4

- name: Use Nodejs ${{ matrix.node-version }}
uses: actions/setup-node@v1
Expand Down
Loading