Skip to content

Commit 8b4003c

Browse files
authored
ci: add node 20, drop node 14/16 on mac/win #374
Problem: macos CI fails: Error: Unable to find Node version '14' for platform darwin and architecture arm64. Solution: - Skip node 14/16 on macos and windows (to save CI time). - Add testing for node 20.
1 parent 3f0940a commit 8b4003c

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,17 @@ jobs:
1919
strategy:
2020
fail-fast: false
2121
matrix:
22-
node: ['14', '16', '18']
22+
node: ['14', '16', '18', '20']
2323
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
24+
exclude:
25+
- os: macos-latest
26+
node: '14'
27+
- os: macos-latest
28+
node: '16'
29+
- os: windows-latest
30+
node: '14'
31+
- os: windows-latest
32+
node: '16'
2433
include:
2534
- os: ubuntu-latest
2635
NIGHTLY: nvim-linux64.tar.gz

0 commit comments

Comments
 (0)