aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/twbs/bootstrap/.github/workflows/js.yml
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/twbs/bootstrap/.github/workflows/js.yml')
-rw-r--r--vendor/twbs/bootstrap/.github/workflows/js.yml16
1 files changed, 6 insertions, 10 deletions
diff --git a/vendor/twbs/bootstrap/.github/workflows/js.yml b/vendor/twbs/bootstrap/.github/workflows/js.yml
index 266b1576d..82616c574 100644
--- a/vendor/twbs/bootstrap/.github/workflows/js.yml
+++ b/vendor/twbs/bootstrap/.github/workflows/js.yml
@@ -5,28 +5,25 @@ on:
branches-ignore:
- "dependabot/**"
pull_request:
+ workflow_dispatch:
env:
FORCE_COLOR: 2
+ NODE: 16
jobs:
run:
- name: Node ${{ matrix.node }}
+ name: JS Tests
runs-on: ubuntu-latest
- strategy:
- fail-fast: false
- matrix:
- node: [12, 14, 16]
-
steps:
- name: Clone repository
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
- name: Set up Node.js
- uses: actions/setup-node@v2
+ uses: actions/setup-node@v3
with:
- node-version: ${{ matrix.node }}
+ node-version: ${{ env.NODE }}
cache: npm
- name: Install npm dependencies
@@ -40,7 +37,6 @@ jobs:
- name: Run Coveralls
uses: coverallsapp/github-action@1.1.3
- if: matrix.node == 14
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
path-to-lcov: "./js/coverage/lcov.info"