File tree 3 files changed +6
-4
lines changed
3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 46
46
bazel :
47
47
name : ${{ inputs.name }}
48
48
runs-on : ${{ inputs.os }}-latest
49
+ env :
50
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
49
51
steps :
50
52
- name : Checkout source tree
51
53
uses : actions/checkout@v3
99
101
edge-version : ${{ inputs.browser-version || 'stable' }}
100
102
- name : Run Bazel
101
103
run : ${{ inputs.run }}
102
- env :
103
- SELENIUM_BROWSER : ${{ inputs.browser }}
104
104
- name : Start SSH session
105
105
if : failure() && runner.debug == '1'
106
106
uses : mxschmitt/action-tmate@v3
Original file line number Diff line number Diff line change 41
41
name : Browser Tests (${{ matrix.browser }})
42
42
browser : ${{ matrix.browser }}
43
43
cache-key : node
44
- run : bazel test --flaky_test_attempts 3 //javascript/node/selenium-webdriver:tests
44
+ run : |
45
+ export SELENIUM_BROWSER=${{ matrix.browser }}
46
+ bazel test --flaky_test_attempts 3 //javascript/node/selenium-webdriver:tests
45
47
46
48
# As soon as this gets merged https://github.com/facebook/jest/pull/9351, we should upgrade Jest and
47
49
# run bazel test javascript/grid-ui:test for these tests
Original file line number Diff line number Diff line change 23
23
name : Release
24
24
cache-key : rb-nightly-${{ matrix.gem }}
25
25
run : |
26
- export GEM_HOST_API_KEY="Bearer ${{ secrets. GITHUB_TOKEN }} "
26
+ export GEM_HOST_API_KEY="Bearer $GITHUB_TOKEN"
27
27
bazel run //rb:${{ matrix.gem }}-bump-nightly-version ${{ inputs.version }}
28
28
bazel run //rb:${{ matrix.gem }}-release-nightly
You can’t perform that action at this time.
0 commit comments