We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 874e0d7 commit c3f3a80Copy full SHA for c3f3a80
.github/workflows/test-on-push-and-pr.yml
@@ -10,14 +10,15 @@ jobs:
10
unit-test:
11
runs-on: ubuntu-latest
12
strategy:
13
+ fail-fast: false
14
matrix:
15
node-version: [18, 20, 22]
16
17
steps:
18
- uses: actions/checkout@v3
19
- name: Build and run tests for Node.js ${{ matrix.node-version }}
20
run: |
- 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 .
22
docker run unit/nodejs.${{ matrix.node-version }}x
23
24
alpine:
0 commit comments