Skip to content

Commit db49eeb

Browse files
committed
chore: drop unsupported node versions on macOS
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.
1 parent 82f4616 commit db49eeb

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/main.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,23 @@ jobs:
1717
- 14
1818
- 16
1919
- 18
20+
- 20
21+
- 22
2022
os:
2123
- ubuntu-latest
2224
- macos-latest
2325
- windows-latest
26+
exclude:
27+
- node-version: 6
28+
os: macos-latest
29+
- node-version: 8
30+
os: macos-latest
31+
- node-version: 10
32+
os: macos-latest
33+
- node-version: 12
34+
os: macos-latest
35+
- node-version: 14
36+
os: macos-latest
2437
steps:
2538
- uses: actions/checkout@v2
2639
- uses: actions/setup-node@v2

0 commit comments

Comments
 (0)