Skip to content

Commit f287a2c

Browse files
committed
chore: fix action
1 parent 5170062 commit f287a2c

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

.github/actions/build-and-test/action.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,16 @@ runs:
44
using: "composite"
55
steps:
66
- name: Build Firefox v2
7+
shell: bash
78
run: npm run build:firefox_v2
89
- name: Build Firefox v3
10+
shell: bash
911
run: npm run build:firefox_v3
1012
- name: Build Chrome v2
13+
shell: bash
1114
run: npm run build:chrome_v2
1215
- name: Build Chrome v3
16+
shell: bash
1317
run: npm run build:chrome_v3
1418
- name: Upload bundle
1519
uses: actions/upload-artifact@v4
@@ -23,6 +27,7 @@ runs:
2327
dist_firefox_v3
2428
- name: Install Edge
2529
id: install-edge
30+
shell: bash
2631
run: |
2732
sudo apt-get remove -y microsoft-edge-stable
2833
sudo wget -qO- https://packages.microsoft.com/keys/microsoft.asc | sudo gpg --dearmor -o /etc/apt/trusted.gpg.d/microsoft.gpg
@@ -33,6 +38,7 @@ runs:
3338
EDGE_PATH=$(which microsoft-edge)
3439
echo "edge-path=$EDGE_PATH" >> $GITHUB_OUTPUT
3540
- name: Test
41+
shell: bash
3642
env:
3743
EDGE_PATH: ${{ steps.install-edge.outputs.edge-path }}
3844
run: |

0 commit comments

Comments
 (0)