We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 95b8f8c commit d260208Copy full SHA for d260208
1 file changed
.github/workflows/browser_test.yml
@@ -20,6 +20,19 @@ jobs:
20
BRANCH_NAME=$(echo "${{ github.ref }}" | awk -F'/' '{print $3}')
21
echo "::set-output name=TEST_RUN_NAME::${{ matrix.browser }}-${{ github.workflow }}—$BRANCH_NAME"
22
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
36
- name: Install node version 16
37
uses: actions/setup-node@v3
38
with:
0 commit comments