Skip to content

Commit 31b7e9d

Browse files
committed
Update the license checker step
1 parent ce6559f commit 31b7e9d

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ jobs:
8080

8181
- name: Check licenses
8282
run: npm run check-licenses
83+
8384
check_licenses:
8485
name: Check Licenses
8586
runs-on: ubuntu-latest
@@ -90,11 +91,16 @@ jobs:
9091
- name: Setup Node.js
9192
uses: actions/setup-node@v5
9293
with:
93-
node-version: ${{ env.NODE_VERSION }}
9494
cache: 'npm'
95+
node-version: ${{ env.NODE_VERSION }}
96+
registry-url: 'https://npm.pkg.github.com'
97+
scope: '@deepnote'
9598

9699
- name: Install dependencies
97100
run: npm ci
101+
env:
102+
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
98103

99104
- name: Check Licenses
100105
run: npm run check-licenses
106+

0 commit comments

Comments
 (0)