File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 23
23
24
24
jobs :
25
25
test :
26
- if : ${{ github.event.workflow_run.conclusion }} == 'success'
26
+ if : ${{ github.event.workflow_run.conclusion == 'success'}}
27
27
name : Test Package Paths
28
28
runs-on : ubuntu-latest
29
29
Original file line number Diff line number Diff line change 39
39
jobs :
40
40
binary-size :
41
41
name : Binary Size
42
- if : (${{ github.event.workflow_run.conclusion }} == 'success' && (github.event_name == 'push' || !(github.event.pull_request.head.repo.fork)) && (github.actor != 'dependabot[bot]'))
42
+ if : (${{ github.event.workflow_run.conclusion == 'success'}} && (github.event_name == 'push' || !(github.event.pull_request.head.repo.fork)) && (github.actor != 'dependabot[bot]'))
43
43
runs-on : ubuntu-latest
44
44
steps :
45
45
- uses : actions/checkout@v3
67
67
run : yarn size-report
68
68
modular-export-size :
69
69
name : Binary Size For Modular Exports
70
- if : (${{ github.event.workflow_run.conclusion }} == 'success' && (github.event_name == 'push' || !(github.event.pull_request.head.repo.fork)) && (github.actor != 'dependabot[bot]'))
70
+ if : (${{ github.event.workflow_run.conclusion == 'success'}} && (github.event_name == 'push' || !(github.event.pull_request.head.repo.fork)) && (github.actor != 'dependabot[bot]'))
71
71
runs-on : ubuntu-latest
72
72
steps :
73
73
- uses : actions/checkout@v3
Original file line number Diff line number Diff line change 38
38
# Auth and Firestore are built and executed in their own jobs in an attempt to reduce flakiness.
39
39
test-the-rest :
40
40
name : (bulk) Node.js and Browser (Chrome) Tests
41
- if : ${{ github.event.workflow_run.conclusion }} == 'success'
41
+ if : ${{ github.event.workflow_run.conclusion == 'success'}}
42
42
runs-on : ubuntu-latest
43
43
steps :
44
44
# install Chrome first, so the correct version of webdriver can be installed by chromedriver when setting up the repo
@@ -137,7 +137,7 @@ jobs:
137
137
138
138
test-firestore :
139
139
name : (Firestore) Node.js and Browser (Chrome) Tests
140
- if : ${{ github.event.workflow_run.conclusion }} == 'success'
140
+ if : ${{ github.event.workflow_run.conclusion == 'success'}}
141
141
runs-on : ubuntu-latest
142
142
steps :
143
143
# install Chrome so the correct version of webdriver can be installed by chromedriver when setting up the repo
@@ -180,7 +180,7 @@ jobs:
180
180
path-to-lcov : ./lcov-all.info
181
181
continue-on-error : true
182
182
test-firestore-integration :
183
- if : ${{ github.event.workflow_run.conclusion }} == 'success'
183
+ if : ${{ github.event.workflow_run.conclusion == 'success'}}
184
184
strategy :
185
185
fail-fast : false
186
186
matrix :
You can’t perform that action at this time.
0 commit comments