Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Testing Node 23 #2106

Draft
wants to merge 30 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from 2 commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
4512045
Testing Node 23.
RobinTail Oct 16, 2024
ebd23c6
Add ignore engines to CI.
RobinTail Oct 16, 2024
849bb78
Starting from Node 23.1
RobinTail Oct 24, 2024
7770b20
Merge branch 'master' into test-node23
RobinTail Oct 24, 2024
999716a
Merge branch 'master' into test-node23
RobinTail Oct 25, 2024
a3b8efd
Merge branch 'master' into test-node23
RobinTail Oct 26, 2024
a76448e
Merge branch 'master' into test-node23
RobinTail Oct 27, 2024
fada1a7
Merge branch 'master' into test-node23
RobinTail Oct 30, 2024
e505747
Merge branch 'master' into test-node23
RobinTail Nov 1, 2024
6ce2a0d
Merge branch 'master' into test-node23
RobinTail Nov 4, 2024
3b1f1fb
Merge branch 'master' into test-node23
RobinTail Nov 5, 2024
6da3303
Merge branch 'master' into test-node23
RobinTail Nov 5, 2024
9e2deb1
Merge branch 'master' into test-node23
RobinTail Nov 8, 2024
c73b5bd
Merge branch 'master' into test-node23
RobinTail Nov 9, 2024
3c46b1f
Merge branch 'master' into test-node23
RobinTail Nov 11, 2024
30d5b5b
Merge branch 'master' into test-node23
RobinTail Nov 15, 2024
52a95b9
Merge branch 'master' into test-node23
RobinTail Nov 17, 2024
3d604fa
Merge branch 'master' into test-node23
RobinTail Nov 18, 2024
af52203
Merge branch 'master' into test-node23
RobinTail Nov 20, 2024
320e5d7
Merge branch 'master' into test-node23
RobinTail Dec 1, 2024
fc1e4f0
Merge branch 'master' into test-node23
RobinTail Dec 2, 2024
17180ed
Merge branch 'master' into test-node23
RobinTail Dec 4, 2024
9a880e8
Merge branch 'master' into test-node23
RobinTail Dec 9, 2024
4a24892
Merge branch 'master' into test-node23
RobinTail Dec 9, 2024
fe184cd
Merge branch 'master' into test-node23
RobinTail Dec 9, 2024
35bd0b1
Merge branch 'master' into test-node23
RobinTail Dec 11, 2024
450b65a
Merge branch 'master' into test-node23
RobinTail Dec 14, 2024
5468b0c
Merge branch 'master' into test-node23
RobinTail Dec 18, 2024
35915db
Merge branch 'master' into test-node23
RobinTail Dec 26, 2024
f90e854
Merge branch 'master' into test-node23
RobinTail Dec 28, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: [18.18.0, 18.x, 20.9.0, 20.x, 22.0.0, 22.x]
node-version: [18.18.0, 18.x, 20.9.0, 20.x, 22.0.0, 22.x, 23.0.0, 23.x]
RobinTail marked this conversation as resolved.
Show resolved Hide resolved
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- name: Get yarn cache dir
Expand All @@ -36,7 +36,7 @@ jobs:
path: ${{ steps.yarnCache.outputs.dir }}
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ matrix.node-version }}-${{ hashFiles('**/yarn.lock') }}
- name: Install dependencies
run: yarn install
run: yarn install --ignore-engines
- name: Lint
run: yarn lint
- name: Test
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
"*.md"
],
"engines": {
"node": "^18.18.0 || ^20.9.0 || ^22.0.0"
"node": "^18.18.0 || ^20.9.0 || ^22.0.0 || ^23.0.0"
},
"dependencies": {
"ansis": "^3.2.0",
Expand Down
Loading