Skip to content

Commit

Permalink
chore: drop unsupported node versions on macOS
Browse files Browse the repository at this point in the history
No change to logic. This drops support for older NodeJS versions on macOS
because GitHub Actions no longer supports them.

This also updates NodeJS to the latest LTS release.
  • Loading branch information
nfischer committed Jun 23, 2024
1 parent 82f4616 commit 56d78a2
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,23 @@ jobs:
- 14
- 16
- 18
- 20
- 22
os:
- ubuntu-latest
- macos-latest
- windows-latest
exclude:
- node-version: 6
os: macos-latest
- node-version: 8
os: macos-latest
- node-version: 10
os: macos-latest
- node-version: 12
os: macos-latest
- node-version: 14
os: macos-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
Expand Down

0 comments on commit 56d78a2

Please sign in to comment.