chore(github): only run tests on the master branch (#446)
This commit is contained in:
parent
601f704414
commit
fea801659d
8
.github/workflows/chromium.yml
vendored
8
.github/workflows/chromium.yml
vendored
|
|
@ -1,6 +1,12 @@
|
|||
name: Chromium Tests
|
||||
|
||||
on: [push, pull_request]
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
pull_request:
|
||||
branches:
|
||||
- master
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
|
|
|||
8
.github/workflows/firefox.yml
vendored
8
.github/workflows/firefox.yml
vendored
|
|
@ -1,6 +1,12 @@
|
|||
name: Firefox Tests
|
||||
|
||||
on: [push, pull_request]
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
pull_request:
|
||||
branches:
|
||||
- master
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
|
|
|||
8
.github/workflows/webkit.yml
vendored
8
.github/workflows/webkit.yml
vendored
|
|
@ -1,6 +1,12 @@
|
|||
name: WebKit Tests
|
||||
|
||||
on: [push, pull_request]
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
pull_request:
|
||||
branches:
|
||||
- master
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
|
|
|||
Loading…
Reference in a new issue