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 0b8e670 commit 46e61deCopy full SHA for 46e61de
1 file changed
.github/workflows/test.yml
@@ -13,19 +13,20 @@ on:
13
jobs:
14
integration:
15
strategy:
16
+ fail-fast: false # doesn't stop on first failure
17
matrix:
18
os: [ubuntu-latest]
19
node-version: [18, 20, 22]
20
21
runs-on: ${{ matrix.os }}
22
steps:
23
- name: Checkout repository
- uses: actions/checkout@v3
24
+ uses: actions/checkout@v4
25
with:
26
fetch-depth: 1
27
28
- name: Set up Node.js ${{ matrix.node-version }}
- uses: actions/setup-node@v3
29
+ uses: actions/setup-node@v4
30
31
node-version: ${{ matrix.node-version }}
32
0 commit comments