Skip to content

Commit bb0dbc1

Browse files
committed
Add required shell parameter
1 parent a01c1a0 commit bb0dbc1

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/actions/src/init/action.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ runs:
2626
steps:
2727
- name: Enable Corepack
2828
run: corepack enable
29+
shell: bash
2930

3031
- name: Use Node.js 💻
3132
uses: actions/setup-node@v4
@@ -36,11 +37,14 @@ runs:
3637
- name: Install Dependencies (Focused)
3738
if: inputs.workspace-name != null && inputs.install-deps
3839
run: yarn workspaces focus ${{ inputs.workspace-name }}
40+
shell: bash
3941

4042
- name: Install Dependencies (General)
4143
if: inputs.workspace-name == null && inputs.install-deps
4244
run: yarn install --immutable
45+
shell: bash
4346

4447
- name: Install Playwright
4548
if: inputs.playwright == 'true' && inputs.install-deps
4649
run: yarn playwright install --with-deps
50+
shell: bash

0 commit comments

Comments
 (0)