Skip to content

Commit c8f569c

Browse files
authored
Merge pull request #50 from advanced-rest-client/fix-publish
W-18562610 Add .npmrc configuration file for npm registry settings
2 parents 1fe509d + e207344 commit c8f569c

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.github/workflows/deployment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
8484
restore-keys: |
8585
${{ runner.os }}-node-
86-
- run: npm install
86+
- run: npm install --no-audit --registry https://registry.npmjs.org/ --no-shrinkwrap
8787
- name: Read version from package.json
8888
uses: culshaw/read-package-node-version-actions@v1
8989
id: package-node-version

.npmrc

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
registry=https://registry.npmjs.org/
2+
@advanced-rest-client:registry=https://registry.npmjs.org/
3+
@mulesoft:registry=https://registry.npmjs.org/
4+
@salesforce:registry=https://registry.npmjs.org/
5+
always-auth=false
6+
strict-ssl=true

0 commit comments

Comments
 (0)