This repository was archived by the owner on Oct 25, 2024. It is now read-only.
File tree 2 files changed +7
-4
lines changed
2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 7
7
lint :
8
8
runs-on : ubuntu-latest
9
9
steps :
10
- - uses : actions/checkout@v2
10
+ - uses : actions/checkout@v4
11
11
- uses : actions/setup-node@v2
12
12
with :
13
13
node-version : " 20"
18
18
name : Build matrix for unit test
19
19
runs-on : ubuntu-latest
20
20
steps :
21
- - uses : actions/checkout@v2
21
+ - uses : actions/checkout@v4
22
22
- id : read-matrix
23
23
name : Read build matrix
24
24
run : echo "::set-output name=matrix::`jq -c . test/unit/config/run_matrix.json`"
@@ -30,11 +30,14 @@ jobs:
30
30
strategy :
31
31
matrix : ${{ fromJSON(needs.build-matrix.outputs.matrix)[github.event_name] }}
32
32
steps :
33
- - uses : actions/checkout@v2
33
+ - uses : actions/checkout@v4
34
34
- uses : actions/setup-node@v2
35
35
with :
36
36
node-version : " 20"
37
37
- run : npm install
38
+ - name : Set Firefox path for macOS
39
+ if : ${{ runner.os == 'macOS' && matrix.browser == 'FirefoxWithFlags' }}
40
+ run : echo "FIREFOX_BIN=/Applications/Firefox.app/Contents/MacOS/firefox">> $GITHUB_ENV
38
41
- name : Run test cases
39
42
env :
40
43
BROWSER : ${{ matrix.browser }}
Original file line number Diff line number Diff line change 3
3
"os" : [
4
4
" ubuntu-latest" ,
5
5
" windows-latest" ,
6
- " macos-latest "
6
+ " macos-13 "
7
7
],
8
8
"browser" : [
9
9
" ChromeWithFlags" ,
You can’t perform that action at this time.
0 commit comments