Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 2 additions & 0 deletions .github/workflows/check-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
with:
node_version: "24.x"
- name: Install Dependencies
shell: bash
run: |
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/generate-changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
with:
node_version: "24.x"
- name: Install Dependencies
shell: bash
run: |
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/prep-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
with:
node_version: "24.x"
- name: Install Dependencies
shell: bash
run: |
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/prep-self-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
with:
node_version: "24.x"
- name: Install Dependencies
shell: bash
run: |
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/publish-changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
with:
node_version: "24.x"

- name: Install Dependencies
shell: bash
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
with:
node_version: "24.x"
- name: Install Dependencies
shell: bash
run: |
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/publish-self-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
with:
node_version: "24.x"
- name: Install Dependencies
shell: bash
run: |
Expand Down
14 changes: 14 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
with:
node_version: "24.x"
- name: Run Linters
run: |
hatch run typing:test
Expand All @@ -32,6 +34,8 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
with:
node_version: "24.x"
- uses: jupyterlab/maintainer-tools/.github/actions/check-links@v1

test:
Expand All @@ -44,6 +48,8 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
with:
node_version: "24.x"

- name: Run the tests with coverage on Ubuntu
if: ${{ matrix.os == 'ubuntu-latest' }}
Expand All @@ -70,6 +76,8 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
with:
node_version: "24.x"
- env:
GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
RH_REPOSITORY: jupyter-server/jupyter_releaser
Expand Down Expand Up @@ -101,6 +109,7 @@ jobs:
- uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
with:
dependency_type: minimum
node_version: "24.x"
- name: Run the unit tests
run: |
hatch run test:nowarn || hatch run test:nowarn --lf
Expand All @@ -115,6 +124,7 @@ jobs:
with:
dependency_type: pre
python_version: "3.12"
node_version: "24.x"
- name: Run the tests
run: |
hatch run test:nowarn || hatch run test:nowarn --lf
Expand All @@ -125,13 +135,17 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
with:
node_version: "24.x"
- run: hatch run docs:build

check_local_actions:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
with:
node_version: "24.x"

- name: prep-release
uses: ./.github/actions/prep-release
Expand Down
Loading