|
31 | 31 | steps:
|
32 | 32 | - name: Checkout GitHub repo
|
33 | 33 | uses: actions/checkout@v4
|
34 |
| - - name: Install Chrome for set binary test |
35 |
| - uses: browser-actions/setup-chrome@v1 |
36 |
| - with: |
37 |
| - chrome-version: stable |
38 |
| - id: setup-chrome |
39 |
| - - name: Install Edge for set binary test |
40 |
| - uses: browser-actions/setup-edge@v1 |
41 |
| - with: |
42 |
| - edge-version: stable |
43 |
| - id: setup-edge |
44 |
| - - name: Install Firefox for set binary test |
45 |
| - if: matrix.os != 'windows' |
46 |
| - uses: browser-actions/setup-firefox@v1 |
47 |
| - with: |
48 |
| - firefox-version: latest |
49 |
| - id: setup-firefox |
50 |
| - - name: Set ENV Windows |
51 |
| - if: matrix.os == 'windows' |
52 |
| - run: | |
53 |
| - echo "CHROME_BIN=${{ steps.setup-chrome.outputs.chrome-path }}" >> $env:GITHUB_ENV |
54 |
| - echo "EDGE_BIN=C:\Program Files (x86)\Microsoft\Edge\Application\msedge.exe" >> $env:GITHUB_ENV |
55 |
| - echo "FF_BIN=C:\Program Files (x86)\Mozilla Firefox\firefox-browser.exe" >> $env:GITHUB_ENV |
56 |
| - - name: Set ENV Mac |
57 |
| - if: matrix.os == 'macos' |
58 |
| - run: | |
59 |
| - echo "CHROME_BIN=${{ steps.setup-chrome.outputs.chrome-path }}" >> "$GITHUB_ENV" |
60 |
| - echo "EDGE_BIN=/Users/runner/hostedtoolcache/msedge/stable/x64/Contents/MacOS/Microsoft Edge" >> "$GITHUB_ENV" |
61 |
| - echo "FF_BIN=/Users/runner/hostedtoolcache/firefox/latest/x64/Contents/MacOS/firefox" >> "$GITHUB_ENV" |
62 |
| - - name: Set ENV Linux |
63 |
| - if: matrix.os == 'ubuntu' |
64 |
| - run: | |
65 |
| - echo "CHROME_BIN=${{ steps.setup-chrome.outputs.chrome-path }}" >> "$GITHUB_ENV" |
66 |
| - echo "EDGE_BIN=/opt/hostedtoolcache/msedge/stable/x64/msedge" >> "$GITHUB_ENV" |
67 |
| - echo "FF_BIN=/opt/hostedtoolcache/firefox/latest/x64/firefox" >> "$GITHUB_ENV" |
68 | 34 | - name: Remove driver directories Windows
|
69 | 35 | if: matrix.os == 'windows'
|
70 | 36 | run: |
|
|
0 commit comments