From 4065ff288e434860b3b29eb9c052867a3880a295 Mon Sep 17 00:00:00 2001 From: Andrew Kostka Date: Wed, 6 Sep 2023 10:45:59 +0000 Subject: [PATCH] Run node.js checks only for our current version --- .github/workflows/node.js.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 26692ca7..33b496c9 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -11,19 +11,13 @@ on: jobs: build: - runs-on: ubuntu-latest - - strategy: - matrix: - node-version: [12, 14, 15] - steps: - uses: actions/checkout@v3.5.3 - - name: Use Node.js ${{ matrix.node-version }} + - name: Use Node.js 15 uses: actions/setup-node@v3.7.0 with: - node-version: ${{ matrix.node-version }} + node-version: 15 - run: npm ci - run: npm run build --if-present - run: npm run lint