Skip to content

Commit

Permalink
ci: adjust node test matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
flpms committed Jul 3, 2024
1 parent 95ab039 commit 97ed36e
Showing 1 changed file with 12 additions and 11 deletions.
23 changes: 12 additions & 11 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,17 @@ jobs:
- name: Build
run: docker build . -t simple-connection
- run: docker-compose up -d
unit-test:
runs-on: ubuntu-20.04
strategy:
matrix:
node-version: [20.x, 21.x, 22.x]
steps:
- uses: actions/checkout@v3
- name: npm CI
run: npm ci
- name: Running Unit Test
run: npm test
test-integration:
runs-on: ubuntu-20.04
needs: build
Expand All @@ -32,14 +43,4 @@ jobs:
run: npm ci
- name: Running Integration Test
run: npm run test:e2e
unit-test:
runs-on: ubuntu-20.04
strategy:
matrix:
node-version: [18.x, 20.x, 22.x]
steps:
- uses: actions/checkout@v3
- name: npm CI
run: npm ci
- name: Running Unit Test
run: npm test

0 comments on commit 97ed36e

Please sign in to comment.