Skip to content

Commit 9538a18

Browse files
Fix CI
Signed-off-by: Andy Jakubowski <[email protected]>
1 parent 0caae37 commit 9538a18

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/check-release.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ on:
55
pull_request:
66
branches: ['*']
77

8+
env:
9+
NODE_VERSION: 22.x
10+
811
concurrency:
912
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
1013
cancel-in-progress: true
@@ -16,6 +19,14 @@ jobs:
1619
- name: Checkout
1720
uses: actions/checkout@v4
1821

22+
- name: Setup Node.js
23+
uses: actions/setup-node@v5
24+
with:
25+
cache: 'npm'
26+
node-version: ${{ env.NODE_VERSION }}
27+
registry-url: 'https://npm.pkg.github.com'
28+
scope: '@deepnote'
29+
1930
- name: Base Setup
2031
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
2132

@@ -25,6 +36,7 @@ jobs:
2536
token: ${{ secrets.GITHUB_TOKEN }}
2637
env:
2738
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
39+
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2840

2941
- name: Upload Distributions
3042
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)