From 6716a7aaa6ac9624aa229d6c62076b8682213bc6 Mon Sep 17 00:00:00 2001 From: Alex Perez Date: Thu, 24 Jul 2025 16:06:54 -0300 Subject: [PATCH 1/2] Add .npmrc configuration file for npm registry settings --- .npmrc | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .npmrc diff --git a/.npmrc b/.npmrc new file mode 100644 index 0000000..50ab988 --- /dev/null +++ b/.npmrc @@ -0,0 +1,6 @@ +registry=https://registry.npmjs.org/ +@advanced-rest-client:registry=https://registry.npmjs.org/ +@mulesoft:registry=https://registry.npmjs.org/ +@salesforce:registry=https://registry.npmjs.org/ +always-auth=false +strict-ssl=true \ No newline at end of file From e2073443d68ecd0de53cc7d2ffa825615174415d Mon Sep 17 00:00:00 2001 From: Alex Perez Date: Thu, 24 Jul 2025 19:08:15 -0300 Subject: [PATCH 2/2] fix publish --- .github/workflows/deployment.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deployment.yml b/.github/workflows/deployment.yml index a110841..c5c3de4 100644 --- a/.github/workflows/deployment.yml +++ b/.github/workflows/deployment.yml @@ -83,7 +83,7 @@ jobs: key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} restore-keys: | ${{ runner.os }}-node- - - run: npm install + - run: npm install --no-audit --registry https://registry.npmjs.org/ --no-shrinkwrap - name: Read version from package.json uses: culshaw/read-package-node-version-actions@v1 id: package-node-version