Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2019-08-24 02:32:29 +0300
committerGitHub <noreply@github.com>2019-08-24 02:32:29 +0300
commit327d32ebad9a4a7073d44d1a89dc5dce9ce56b79 (patch)
treea1fdb9a098ba7bf0df1d39a71e92597df215e16e
parentd9abb8e20df5e68e09700c98194f4f3e9338cc4c (diff)
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 d81ed64727..f9a9444a5f 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: [8, 10, 12]
steps:
- - uses: actions/checkout@master
+ - name: Clone repository
+ uses: actions/checkout@master
with:
fetch-depth: 3
@@ -32,7 +34,7 @@ jobs:
- name: Run bundlesize
run: npm run bundlesize
- if: matrix.node == 10 && github.repository == 'twbs/bootstrap' && github.event_name == 'push'
+ if: matrix.node == 10
env:
BUNDLESIZE_GITHUB_TOKEN: "${{ secrets.BUNDLESIZE_GITHUB_TOKEN }}"