We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e23b582 commit d7e7319Copy full SHA for d7e7319
.github/workflows/simorgh-unit-tests.yml
@@ -43,12 +43,14 @@ jobs:
43
uses: v-venes/create-npmrc@v1.0.0
44
with:
45
org_name: bbc
46
- auth_token: WS_UTF_AUTH
+ auth_token: $WS_UTF_AUTH
47
always_auth: true
48
49
- name: Install Node Modules
50
if: steps.cache.outputs.cache-hit != 'true'
51
- run: ./scripts/installNodeModules.sh
+ run: |
52
+ yarn config set 'npmRegistries["//npm.example.com"].npmAuthToken' $WS_UTF_AUTH
53
+ ./scripts/installNodeModules.sh
54
55
- name: Build Simorgh - Express App
56
run: yarn build
0 commit comments