mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
Change when CI runs
Run it for all pull requests, the master branch, and any branches that end with `-ci`.
This commit is contained in:
parent
0c731dd24f
commit
37dc6e1031
7 changed files with 70 additions and 7 deletions
11
.github/workflows/browserstack.yml
vendored
11
.github/workflows/browserstack.yml
vendored
|
@ -1,5 +1,14 @@
|
||||||
name: BrowserStack
|
name: BrowserStack
|
||||||
on: [push]
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
- "**-ci"
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- "**"
|
||||||
|
|
||||||
env:
|
env:
|
||||||
CI: true
|
CI: true
|
||||||
NODE: 10.x
|
NODE: 10.x
|
||||||
|
|
11
.github/workflows/bundlewatch.yml
vendored
11
.github/workflows/bundlewatch.yml
vendored
|
@ -1,5 +1,14 @@
|
||||||
name: Bundlewatch
|
name: Bundlewatch
|
||||||
on: [push, pull_request]
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
- "**-ci"
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- "**"
|
||||||
|
|
||||||
env:
|
env:
|
||||||
CI: true
|
CI: true
|
||||||
NODE: 10.x
|
NODE: 10.x
|
||||||
|
|
11
.github/workflows/css.yml
vendored
11
.github/workflows/css.yml
vendored
|
@ -1,5 +1,14 @@
|
||||||
name: CSS
|
name: CSS
|
||||||
on: [push, pull_request]
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
- "**-ci"
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- "**"
|
||||||
|
|
||||||
env:
|
env:
|
||||||
CI: true
|
CI: true
|
||||||
NODE: 10.x
|
NODE: 10.x
|
||||||
|
|
11
.github/workflows/dart-sass.yml
vendored
11
.github/workflows/dart-sass.yml
vendored
|
@ -1,5 +1,14 @@
|
||||||
name: CSS (Dart Sass)
|
name: CSS (Dart Sass)
|
||||||
on: [push, pull_request]
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
- "**-ci"
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- "**"
|
||||||
|
|
||||||
env:
|
env:
|
||||||
CI: true
|
CI: true
|
||||||
NODE: 10.x
|
NODE: 10.x
|
||||||
|
|
11
.github/workflows/docs.yml
vendored
11
.github/workflows/docs.yml
vendored
|
@ -1,5 +1,14 @@
|
||||||
name: Docs
|
name: Docs
|
||||||
on: [push, pull_request]
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
- "**-ci"
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- "**"
|
||||||
|
|
||||||
env:
|
env:
|
||||||
CI: true
|
CI: true
|
||||||
NODE: 10.x
|
NODE: 10.x
|
||||||
|
|
11
.github/workflows/js.yml
vendored
11
.github/workflows/js.yml
vendored
|
@ -1,5 +1,14 @@
|
||||||
name: JS Tests
|
name: JS Tests
|
||||||
on: [push, pull_request]
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
- "**-ci"
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- "**"
|
||||||
|
|
||||||
env:
|
env:
|
||||||
CI: true
|
CI: true
|
||||||
|
|
||||||
|
|
11
.github/workflows/lint.yml
vendored
11
.github/workflows/lint.yml
vendored
|
@ -1,5 +1,14 @@
|
||||||
name: Lint
|
name: Lint
|
||||||
on: [push, pull_request]
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
- "**-ci"
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- "**"
|
||||||
|
|
||||||
env:
|
env:
|
||||||
CI: true
|
CI: true
|
||||||
NODE: 10.x
|
NODE: 10.x
|
||||||
|
|
Loading…
Reference in a new issue