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 d354298 commit 94f16f5Copy full SHA for 94f16f5
.github/workflows/ci.yml
@@ -6,10 +6,18 @@ on:
6
push:
7
branches: [main]
8
9
+concurrency:
10
+ group: ${{ github.workflow }}-${{ github.ref }}
11
+ cancel-in-progress: true
12
+
13
jobs:
14
ci:
15
name: Continuous integration
- runs-on: ubuntu-latest
16
+ runs-on: ${{ matrix.os }}
17
+ strategy:
18
+ matrix:
19
+ os: [ubuntu-latest]
20
+ node: [20, 22, 24]
21
22
steps:
23
- name: Checkout
@@ -23,7 +31,7 @@ jobs:
31
- name: Setup Node
24
32
uses: actions/setup-node@v4
25
33
with:
26
- node-version: 22
34
+ node-version: ${{ matrix.node }}
27
35
cache: "pnpm"
28
36
29
37
- name: Install dependencies
0 commit comments