aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <[email protected]>2019-08-24 02:32:29 +0300
committerXhmikosR <[email protected]>2019-08-27 16:32:25 +0300
commitdd181e91bd174776cf81a8747d39d1d2f89c339e (patch)
tree6d887883f491e4bb96b090cc90b48c64f8328b95
parentbab999701c23d6bbf1b8ec659c59c1e34267e19c (diff)
downloadbootstrap-dd181e91bd174776cf81a8747d39d1d2f89c339e.tar.xz
bootstrap-dd181e91bd174776cf81a8747d39d1d2f89c339e.zip
Actions CI tweaks (#29276)
* Allow bundlesize to run for forks too. * Add name for clone step. * Add` fail-fast: false`
-rw-r--r--.github/workflows/test.yml6
1 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 3867bc5dd..3a89105e1 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -7,11 +7,13 @@ jobs:
runs-on: ubuntu-latest
strategy:
+ fail-fast: false
matrix:
node: [6, 8, 12]
steps:
- - uses: actions/checkout@master
+ - name: Clone repository
+ uses: actions/checkout@master
with:
fetch-depth: 3
@@ -46,7 +48,7 @@ jobs:
- name: Run bundlesize
run: npm run bundlesize
- if: matrix.node == 8 && github.repository == 'twbs/bootstrap'
+ if: matrix.node == 8
env:
BUNDLESIZE_GITHUB_TOKEN: "${{ secrets.BUNDLESIZE_GITHUB_TOKEN }}"