From 8af15bc00cd1c8d0762a7a8604f93571ae5d3da1 Mon Sep 17 00:00:00 2001 From: Christopher Kolstad Date: Thu, 23 May 2024 13:50:58 +0200 Subject: [PATCH] Remove matrix strategy from build workflow --- .github/workflows/build.yaml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 74f20680b40d..c2a1cdc95c9b 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -17,9 +17,6 @@ jobs: runs-on: ubuntu-latest name: build - strategy: - matrix: - node-version: [20.x] services: # Label used to access the service container postgres: @@ -38,10 +35,10 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Use Node.js ${{ matrix.node-version }} + - name: Use Node.js 20 uses: actions/setup-node@v4 with: - node-version: ${{ matrix.node-version }} + node-version: 20.x cache: 'yarn' - run: yarn install --frozen-lockfile --ignore-scripts - run: yarn lint @@ -56,4 +53,4 @@ jobs: if: (success() || failure()) && github.ref == 'refs/heads/main' with: name: test-results - path: ./reports/jest-junit.xml \ No newline at end of file + path: ./reports/jest-junit.xml