diff options
| author | XhmikosR <[email protected]> | 2021-12-10 16:40:32 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-12-10 16:40:32 +0200 |
| commit | 68f226750db03bc26ed5ead6bb074804a4f63853 (patch) | |
| tree | d5b5e6181d5d99c133aeaa4e68267daaf02dc89f | |
| parent | 63d38b19740eac25b8603dc9a9ae11e1df4667f7 (diff) | |
| download | bootstrap-68f226750db03bc26ed5ead6bb074804a4f63853.tar.xz bootstrap-68f226750db03bc26ed5ead6bb074804a4f63853.zip | |
JS tests: only test one Node.js version (#35481)
| -rw-r--r-- | .github/workflows/js.yml | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/.github/workflows/js.yml b/.github/workflows/js.yml index 7af17ceb6..e9719000e 100644 --- a/.github/workflows/js.yml +++ b/.github/workflows/js.yml @@ -9,17 +9,13 @@ on: 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 @@ -27,7 +23,7 @@ jobs: - name: Set up Node.js uses: actions/setup-node@v2 with: - node-version: ${{ matrix.node }} + node-version: ${{ env.NODE }} cache: npm - name: Install npm dependencies @@ -41,7 +37,6 @@ jobs: - name: Run Coveralls uses: coverallsapp/[email protected] - if: matrix.node == 16 with: github-token: "${{ secrets.GITHUB_TOKEN }}" path-to-lcov: "./js/coverage/lcov.info" |
