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 66c2c15 commit 494ce37Copy full SHA for 494ce37
.github/workflows/test.yml
@@ -17,6 +17,13 @@ jobs:
17
with:
18
node-version: 20.11
19
cache: 'npm'
20
+ # allow packages inside this repo to consume from our private npm registry
21
+ - name: Authenticate against NPM
22
+ run: |
23
+ npm config set //npm.pkg.github.com/:_authToken=$GH_TOKEN
24
+ npm config list
25
+ env:
26
+ githubToken: ${{ secrets.GH_TOKEN_PKG_REGISTRY_READ }}
27
- name: Install dependencies
28
run: npm ci
29
- name: Build
@@ -25,6 +32,5 @@ jobs:
32
uses: ./
33
34
skipOnCommitMsg: "sample"
- githubToken: ${{ secrets.GITHUB_TOKEN }}
35
- name: Some Job
30
36
run: echo "sample"
0 commit comments