We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84d156d commit d500a58Copy full SHA for d500a58
.github/actions/node-setup/action.yml
@@ -5,12 +5,17 @@ inputs:
5
install-dependencies:
6
description: 'Set to false to skip pnpm install (for tooling-only jobs)'
7
default: 'true'
8
+ enable-corepack:
9
+ description: 'Enable corepack; set false to skip and npm-install pnpm'
10
+ default: 'true'
11
12
runs:
13
using: 'composite'
14
steps:
15
- name: 🗃️ Enable corepack
- run: corepack enable
16
+ if: inputs.enable-corepack == 'true'
17
+ run: |
18
+ corepack enable
19
shell: bash
20
21
- name: 🎰 Setup Node
.github/workflows/e2e.yml
@@ -37,6 +37,8 @@ jobs:
37
38
- name: 💻 Node setup
39
uses: ./.github/actions/node-setup
40
+ with:
41
+ enable-corepack: 'false'
42
43
- name: 🎭 E2E setup
44
uses: ./.github/actions/e2e-setup
0 commit comments