Skip to content

Commit 8981a44

Browse files
committed
Reapply "Add GitHub NPM registry URL to Node.js setup in workflows"
This reverts commit 5741a86.
1 parent c427d03 commit 8981a44

File tree

8 files changed

+9
-0
lines changed

8 files changed

+9
-0
lines changed

.github/actions/build-docs/action.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ runs:
1212
- uses: actions/setup-node@v4
1313
with:
1414
node-version: 22
15+
registry-url: 'https://npm.pkg.github.com'
1516
- name: Npm cli install
1617
working-directory: .
1718
run: npm ci

.github/actions/build-libraries/action.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ runs:
1212
- uses: actions/setup-node@v4
1313
with:
1414
node-version: 22
15+
registry-url: 'https://npm.pkg.github.com'
1516

1617
- name: Npm install
1718
working-directory: .

.github/actions/build-proxies/action.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ runs:
3838
- uses: actions/setup-node@v4
3939
with:
4040
node-version: ${{ inputs.nodejs_version }}
41+
registry-url: 'https://npm.pkg.github.com'
4142

4243
- name: "Cache node_modules"
4344
uses: actions/cache@v4

.github/actions/build-sandbox/action.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ runs:
1313
- uses: actions/setup-node@v4
1414
with:
1515
node-version: 22
16+
registry-url: 'https://npm.pkg.github.com'
1617

1718
- name: Npm install
1819
working-directory: .

.github/actions/build-sdk/action.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ runs:
1212
- uses: actions/setup-node@v4
1313
with:
1414
node-version: 22
15+
registry-url: 'https://npm.pkg.github.com'
1516

1617
- name: Npm install
1718
working-directory: .

.github/actions/build-server/action.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ runs:
1212
- uses: actions/setup-node@v4
1313
with:
1414
node-version: 22
15+
registry-url: 'https://npm.pkg.github.com'
1516

1617
- name: Npm install
1718
working-directory: .

.github/workflows/pr_closed.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ jobs:
8383
uses: actions/setup-node@v4
8484
with:
8585
node-version: ${{ inputs.nodejs_version }}
86+
registry-url: 'https://npm.pkg.github.com'
8687

8788
- name: check if local version differs from latest published version
8889
id: check-version
@@ -116,6 +117,7 @@ jobs:
116117
uses: actions/setup-node@v4
117118
with:
118119
node-version: ${{ inputs.nodejs_version }}
120+
registry-url: 'https://npm.pkg.github.com'
119121
- name: "Install dependencies"
120122
run: npm ci
121123
- name: "Run provider contract tests"

.github/workflows/stage-1-commit.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -281,6 +281,7 @@ jobs:
281281
uses: actions/setup-node@v4
282282
with:
283283
node-version: ${{ inputs.nodejs_version }}
284+
registry-url: 'https://npm.pkg.github.com'
284285

285286
- name: check if local version differs from latest published version
286287
id: check-version

0 commit comments

Comments
 (0)