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