Skip to content

Commit 536fa68

Browse files
committed
Test with node 24
1 parent e3d9183 commit 536fa68

File tree

8 files changed

+28
-0
lines changed

8 files changed

+28
-0
lines changed

.github/workflows/check-release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ jobs:
1515
steps:
1616
- uses: actions/checkout@v4
1717
- uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
18+
with:
19+
node_version: "24.x"
1820
- name: Install Dependencies
1921
shell: bash
2022
run: |

.github/workflows/generate-changelog.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ jobs:
3232
steps:
3333
- uses: actions/checkout@v4
3434
- uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
35+
with:
36+
node_version: "24.x"
3537
- name: Install Dependencies
3638
shell: bash
3739
run: |

.github/workflows/prep-release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ jobs:
3232
steps:
3333
- uses: actions/checkout@v4
3434
- uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
35+
with:
36+
node_version: "24.x"
3537
- name: Install Dependencies
3638
shell: bash
3739
run: |

.github/workflows/prep-self-release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ jobs:
3131
steps:
3232
- uses: actions/checkout@v4
3333
- uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
34+
with:
35+
node_version: "24.x"
3436
- name: Install Dependencies
3537
shell: bash
3638
run: |

.github/workflows/publish-changelog.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ jobs:
1616
steps:
1717
- uses: actions/checkout@v4
1818
- uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
19+
with:
20+
node_version: "24.x"
1921

2022
- name: Install Dependencies
2123
shell: bash

.github/workflows/publish-release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ jobs:
2121
steps:
2222
- uses: actions/checkout@v4
2323
- uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
24+
with:
25+
node_version: "24.x"
2426
- name: Install Dependencies
2527
shell: bash
2628
run: |

.github/workflows/publish-self-release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ jobs:
2121
steps:
2222
- uses: actions/checkout@v4
2323
- uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
24+
with:
25+
node_version: "24.x"
2426
- name: Install Dependencies
2527
shell: bash
2628
run: |

.github/workflows/test.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ jobs:
2020
steps:
2121
- uses: actions/checkout@v4
2222
- uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
23+
with:
24+
node_version: "24.x"
2325
- name: Run Linters
2426
run: |
2527
hatch run typing:test
@@ -32,6 +34,8 @@ jobs:
3234
steps:
3335
- uses: actions/checkout@v4
3436
- uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
37+
with:
38+
node_version: "24.x"
3539
- uses: jupyterlab/maintainer-tools/.github/actions/check-links@v1
3640
with:
3741
ignore_links: https://blog.jupyter.org/.*
@@ -46,6 +50,8 @@ jobs:
4650
steps:
4751
- uses: actions/checkout@v4
4852
- uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
53+
with:
54+
node_version: "24.x"
4955

5056
- name: Run the tests with coverage on Ubuntu
5157
if: ${{ matrix.os == 'ubuntu-latest' }}
@@ -72,6 +78,8 @@ jobs:
7278
steps:
7379
- uses: actions/checkout@v4
7480
- uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
81+
with:
82+
node_version: "24.x"
7583
- env:
7684
GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7785
RH_REPOSITORY: jupyter-server/jupyter_releaser
@@ -103,6 +111,7 @@ jobs:
103111
- uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
104112
with:
105113
dependency_type: minimum
114+
node_version: "24.x"
106115
- name: Run the unit tests
107116
run: |
108117
hatch run test:nowarn || hatch run test:nowarn --lf
@@ -117,6 +126,7 @@ jobs:
117126
with:
118127
dependency_type: pre
119128
python_version: "3.12"
129+
node_version: "24.x"
120130
- name: Run the tests
121131
run: |
122132
hatch run test:nowarn || hatch run test:nowarn --lf
@@ -127,13 +137,17 @@ jobs:
127137
steps:
128138
- uses: actions/checkout@v4
129139
- uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
140+
with:
141+
node_version: "24.x"
130142
- run: hatch run docs:build
131143

132144
check_local_actions:
133145
runs-on: ubuntu-latest
134146
steps:
135147
- uses: actions/checkout@v4
136148
- uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
149+
with:
150+
node_version: "24.x"
137151

138152
- name: prep-release
139153
uses: ./.github/actions/prep-release

0 commit comments

Comments
 (0)