Skip to content

Commit 6888bf2

Browse files
committed
fix(ci): remove Node 18 due to node-canvas installation issues
- per the in-line comment, there are some upstream issues in node-canvas that is causing installation to fail on Node 18 - made a TODO to add Node 18 back to the matrix once it's properly supported upstream
1 parent 99999ca commit 6888bf2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ jobs:
77
runs-on: ${{ matrix.os }}
88
strategy:
99
matrix:
10-
node-version: [14.x, 16.x, 18.x] # LTS Node: https://nodejs.org/en/about/releases/
10+
# TODO: add back Node 18 once node-canvas is properly supported: https://github.com/Automattic/node-canvas/issues/2025
11+
node-version: [14.x, 16.x] # LTS Node: https://nodejs.org/en/about/releases/
1112
os: [ubuntu-latest, windows-latest, macOS-latest]
1213

1314
steps:

0 commit comments

Comments
 (0)