Skip to content

Commit 1a22e32

Browse files
authored
fix(ci): dont let job fail for latest node
Latest node 23 ci check fails because of active development and dependencies would need an update or fix However, even if this check is declared as not required, the github actions still fail, which is a false positive as long as it's not an LTS version (which node 23 isn't) To get rid of the failures, this PR removes the latest node check and adds dedicated LTS version instead which makes the CI succeed again. Will review this for latest node again when working on 2.10.x soon
1 parent 30a40f0 commit 1a22e32

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
strategy:
2727
fail-fast: false
2828
matrix:
29-
node-version: [12, 14, 16, 18, latest]
29+
node-version: [12, 14, 16, 18, 20, 22]
3030
steps:
3131
- uses: actions/checkout@v4
3232
- name: Setup Node.js ${{ matrix.node-version }}

0 commit comments

Comments
 (0)