We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf7e43b commit 746fb2cCopy full SHA for 746fb2c
1 file changed
.github/workflows/test.yml
@@ -16,6 +16,13 @@ jobs:
16
uses: actions/setup-node@v4.0.2
17
with:
18
node-version: 20.11
19
+ # allow packages inside this repo to consume from our private npm registry
20
+ - name: Authenticate against NPM
21
+ run: |
22
+ npm config set //npm.pkg.github.com/:_authToken=$GH_TOKEN
23
+ npm config list
24
+ env:
25
+ GH_TOKEN: ${{ secrets.GH_TOKEN_PKG_REGISTRY_READ }}
26
- name: Install dependencies
27
run: npm ci
28
- name: Build
@@ -24,6 +31,6 @@ jobs:
31
uses: ./
32
33
skipOnCommitMsg: "sample"
- ghToken: ${{secrets.GH_TOKEN_3}}
34
+ ghToken: ${{ secrets.GH_TOKEN_3 }}
35
- name: Some Job
29
36
run: echo "sample"
0 commit comments