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 a01c1a0 commit bb0dbc1Copy full SHA for bb0dbc1
.github/actions/src/init/action.yml
@@ -26,6 +26,7 @@ runs:
26
steps:
27
- name: Enable Corepack
28
run: corepack enable
29
+ shell: bash
30
31
- name: Use Node.js 💻
32
uses: actions/setup-node@v4
@@ -36,11 +37,14 @@ runs:
36
37
- name: Install Dependencies (Focused)
38
if: inputs.workspace-name != null && inputs.install-deps
39
run: yarn workspaces focus ${{ inputs.workspace-name }}
40
41
42
- name: Install Dependencies (General)
43
if: inputs.workspace-name == null && inputs.install-deps
44
run: yarn install --immutable
45
46
47
- name: Install Playwright
48
if: inputs.playwright == 'true' && inputs.install-deps
49
run: yarn playwright install --with-deps
50
0 commit comments