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