From 39d323a3cefc6c48a10d44ffdb1858a3c9eb40de Mon Sep 17 00:00:00 2001 From: Guz013 <43732358+Guz013@users.noreply.github.com> Date: Wed, 23 Aug 2023 12:09:24 -0300 Subject: [PATCH] =?UTF-8?q?ci:=20=F0=9F=91=B7=20add=20scope=20to=20node=20?= =?UTF-8?q?setup?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/actions/pnpm-setup/action.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/actions/pnpm-setup/action.yml b/.github/actions/pnpm-setup/action.yml index 9e7998a..35bf796 100644 --- a/.github/actions/pnpm-setup/action.yml +++ b/.github/actions/pnpm-setup/action.yml @@ -13,6 +13,10 @@ inputs: required: false type: boolean default: true + scope: + required: false + type: string + default: '@eslit' runs: using: composite @@ -21,6 +25,8 @@ runs: uses: actions/setup-node@v3 with: node-version: ${{ inputs.node-version }} + registry-url: 'https://registry.npmjs.org' + scope: ${{ inputs.scope }} - name: Install PNPM uses: pnpm/action-setup@v2