]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Actions CI tweaks (#29276)
authorXhmikosR <xhmikosr@gmail.com>
Fri, 23 Aug 2019 23:32:29 +0000 (02:32 +0300)
committerXhmikosR <xhmikosr@gmail.com>
Tue, 27 Aug 2019 13:32:25 +0000 (16:32 +0300)
* Allow bundlesize to run for forks too.
* Add name for clone step.
* Add` fail-fast: false`

.github/workflows/test.yml

index 3867bc5ddc51a1ac86f6fe2c9a3e43e264982077..3a89105e1b813457d0fedd14ab56338fcbaacc3c 100644 (file)
@@ -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 }}"