diff --git a/.github/actions/pnpm/action.yml b/.github/actions/pnpm/action.yml index 864622dd7a..8a7372cbb6 100644 --- a/.github/actions/pnpm/action.yml +++ b/.github/actions/pnpm/action.yml @@ -8,13 +8,13 @@ inputs: version: # id of input description: 'The version to use' required: false - default: 5.10.2 + default: 5.10.4 runs: using: 'composite' steps: - name: install pnpm - run: npm install pnpm@${{ inputs.version }} -g + run: npm i -g pnpm@${{ inputs.version }} shell: bash - name: setup pnpm config diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3a490db8bd..b226c3061c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,7 +9,7 @@ on: - main - next - pull_request_target: + pull_request: branches: - main - next diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 9cf3626ce3..e8e8802aff 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -434,7 +434,7 @@ importers: '@remirror/pm': 1.0.0-next.51 packages/@remirror/extension-callout: dependencies: - '@babel/runtime': 7.12.1 + '@babel/runtime': 7.12.5 linaria: 2.0.0 type-fest: 0.18.0 devDependencies: diff --git a/support/azure/pipeline-install.yml b/support/azure/pipeline-install.yml index fff543b8e6..b3c3188d59 100644 --- a/support/azure/pipeline-install.yml +++ b/support/azure/pipeline-install.yml @@ -1,10 +1,10 @@ steps: - task: NodeTool@0 inputs: - versionSpec: '10.x' + versionSpec: '14.x' displayName: 'install node' - - bash: npm install pnpm@5.4.9 -g + - bash: npm i -g pnpm@5.10.4 displayName: 'install pnpm' - bash: pnpm config set store-dir $PNPM_CACHE_FOLDER