diff options
| author | XhmikosR <[email protected]> | 2019-08-24 02:32:29 +0300 |
|---|---|---|
| committer | XhmikosR <[email protected]> | 2019-08-27 16:32:25 +0300 |
| commit | dd181e91bd174776cf81a8747d39d1d2f89c339e (patch) | |
| tree | 6d887883f491e4bb96b090cc90b48c64f8328b95 | |
| parent | bab999701c23d6bbf1b8ec659c59c1e34267e19c (diff) | |
| download | bootstrap-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.yml | 6 |
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 }}" |
