From: XhmikosR Date: Fri, 23 Aug 2019 23:32:29 +0000 (+0300) Subject: Actions CI tweaks (#29276) X-Git-Tag: v4.4.0~63 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=dd181e91bd174776cf81a8747d39d1d2f89c339e;p=thirdparty%2Fbootstrap.git Actions CI tweaks (#29276) * Allow bundlesize to run for forks too. * Add name for clone step. * Add` fail-fast: false` --- diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3867bc5ddc..3a89105e1b 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 }}"