Skip to content

Commit d260208

Browse files
committed
add installing browsers
1 parent 95b8f8c commit d260208

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

.github/workflows/browser_test.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,19 @@ jobs:
2020
BRANCH_NAME=$(echo "${{ github.ref }}" | awk -F'/' '{print $3}')
2121
echo "::set-output name=TEST_RUN_NAME::${{ matrix.browser }}-${{ github.workflow }}—$BRANCH_NAME"
2222
23+
- name: Setup Edge
24+
if: ${{ startsWith(matrix.browser, 'edge') }}
25+
uses: browser-actions/setup-edge@v1
26+
27+
- name: Setup Chrome
28+
if: ${{ startsWith(matrix.browser, 'chrome') }}
29+
uses: browser-actions/setup-chrome@v2
30+
31+
- name: Setup Firefox
32+
if: ${{ startsWith(matrix.browser, 'firefox') }}
33+
uses: browser-actions/setup-firefox@v1
34+
35+
2336
- name: Install node version 16
2437
uses: actions/setup-node@v3
2538
with:

0 commit comments

Comments
 (0)