Skip to content

Commit

Permalink
Remove matrix strategy from build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
chriswk committed May 23, 2024
1 parent 5c817b6 commit 8af15bc
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
Expand All @@ -56,4 +53,4 @@ jobs:
if: (success() || failure()) && github.ref == 'refs/heads/main'
with:
name: test-results
path: ./reports/jest-junit.xml
path: ./reports/jest-junit.xml

0 comments on commit 8af15bc

Please sign in to comment.