From 83001ed31b4163ad489e4835ce451a8d55c150be Mon Sep 17 00:00:00 2001 From: martines3000 Date: Mon, 8 Apr 2024 11:10:23 +0200 Subject: [PATCH] chore: remove matrix from workflow --- .github/workflows/ci.yaml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 6dc17c1..39b88d8 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -2,9 +2,6 @@ name: Build, Lint and Test on: push jobs: build: - strategy: - matrix: - version: ['lts/*'] timeout-minutes: 7 runs-on: ubuntu-latest steps: @@ -14,14 +11,14 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v4 with: - node-version: ${{ matrix.version }} + node-version: 'lts/*' - name: Cache node modules uses: actions/cache@v4 with: # npm cache files are stored in `~/.npm` on Linux/macOS path: ~/.npm - key: cache-${{ runner.os }}-${{ matrix.version }}-${{ hashFiles('**/package-lock.json') }} + key: cache-${{ runner.os }}-${{ hashFiles('**/package-lock.json') }} - name: Install dependencies run: npm ci