File tree Expand file tree Collapse file tree 1 file changed +16
-5
lines changed Expand file tree Collapse file tree 1 file changed +16
-5
lines changed Original file line number Diff line number Diff line change 12
12
name : Build
13
13
cache-key : javascript-build
14
14
run : bazel build //javascript/node/selenium-webdriver:selenium-webdriver
15
+
16
+ small-tests :
17
+ name : Small Tests
18
+ needs : build
19
+ uses : ./.github/workflows/bazel.yml
20
+ with :
21
+ name : Small Tests
22
+ cache-key : javascript-small-tests
23
+ run : bazel test //javascript/node/selenium-webdriver:small-tests
24
+
15
25
browser-tests :
16
26
name : Browser Tests
17
- needs : build
27
+ needs : small-tests
18
28
uses : ./.github/workflows/bazel.yml
19
29
strategy :
20
30
fail-fast : false
25
35
with :
26
36
name : Browser Tests (${{ matrix.browser }})
27
37
browser : ${{ matrix.browser }}
28
- cache-key : node
29
- run : |
30
- export SELENIUM_BROWSER=${{ matrix.browser }}
31
- bazel test --flaky_test_attempts 3 //javascript/node/selenium-webdriver:${{matrix.browser}}-browser-tests
38
+ cache-key : javascript-${{matrix.browser}}-browser-tests
39
+ run : >
40
+ bazel test
41
+ --flaky_test_attempts 3
42
+ //javascript/node/selenium-webdriver:${{ matrix.browser }}-browser-tests
You can’t perform that action at this time.
0 commit comments