File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change 11
11
12
12
jobs :
13
13
tests :
14
+ # Will not run if the event is a PR to bump-meilisearch-v* (so a pre-release PR)
15
+ # Will still run for each push to bump-meilisearch-v*
16
+ if : github.event_name != 'pull_request' || !startsWith(github.base_ref, 'bump-meilisearch-v')
14
17
runs-on : ubuntu-latest
15
18
strategy :
16
19
fail-fast : false
41
44
run : yarn run lint
42
45
43
46
cypress-run :
47
+ # Will not run if the event is a PR to bump-meilisearch-v* (so a pre-release PR)
48
+ # Will still run for each push to bump-meilisearch-v*
49
+ if : github.event_name != 'pull_request' || !startsWith(github.base_ref, 'bump-meilisearch-v')
44
50
runs-on : ubuntu-latest
45
51
# Browser on which the tests are run
46
52
container : cypress/browsers:node12.18.3-chrome87-ff82
You can’t perform that action at this time.
0 commit comments