Skip to content

Commit c3f3a80

Browse files
committed
feat: simpler unit testing
1 parent 874e0d7 commit c3f3a80

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/test-on-push-and-pr.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,15 @@ jobs:
1010
unit-test:
1111
runs-on: ubuntu-latest
1212
strategy:
13+
fail-fast: false
1314
matrix:
1415
node-version: [18, 20, 22]
1516

1617
steps:
1718
- uses: actions/checkout@v3
1819
- name: Build and run tests for Node.js ${{ matrix.node-version }}
1920
run: |
20-
docker build -f test/unit/Dockerfile.nodejs.${{ matrix.node-version }}x -t unit/nodejs.${{ matrix.node-version }}x .
21+
docker build -f test/unit/Dockerfile.nodejs${{ matrix.node-version }}x -t unit/nodejs.${{ matrix.node-version }}x .
2122
docker run unit/nodejs.${{ matrix.node-version }}x
2223
2324
alpine:

0 commit comments

Comments
 (0)