We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce6559f commit 31b7e9dCopy full SHA for 31b7e9d
.github/workflows/ci.yml
@@ -80,6 +80,7 @@ jobs:
80
81
- name: Check licenses
82
run: npm run check-licenses
83
+
84
check_licenses:
85
name: Check Licenses
86
runs-on: ubuntu-latest
@@ -90,11 +91,16 @@ jobs:
90
91
- name: Setup Node.js
92
uses: actions/setup-node@v5
93
with:
- node-version: ${{ env.NODE_VERSION }}
94
cache: 'npm'
95
+ node-version: ${{ env.NODE_VERSION }}
96
+ registry-url: 'https://npm.pkg.github.com'
97
+ scope: '@deepnote'
98
99
- name: Install dependencies
100
run: npm ci
101
+ env:
102
+ NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
103
104
- name: Check Licenses
105
106
0 commit comments