From c24f751c63e09085a8e5ca3a9a6593099a46371d Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Fri, 10 Dec 2021 16:40:32 +0200 Subject: [PATCH] JS tests: only test one Node.js version (#35481) --- .github/workflows/js.yml | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/.github/workflows/js.yml b/.github/workflows/js.yml index 7af17ceb6a..e9719000e3 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/github-action@1.1.3 - if: matrix.node == 16 with: github-token: "${{ secrets.GITHUB_TOKEN }}" path-to-lcov: "./js/coverage/lcov.info"