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 37380c9 commit 2f035adCopy full SHA for 2f035ad
.github/workflows/ci.yml
@@ -7,21 +7,32 @@ on:
7
branches: [main]
8
9
jobs:
10
+ lint:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v4
14
+ - uses: pnpm/action-setup@v4
15
+ - uses: actions/setup-node@v4
16
+ with:
17
+ node-version: 22
18
+ cache: pnpm
19
+ - run: pnpm install
20
+ - run: pnpm lint
21
+
22
build:
23
runs-on: ubuntu-latest
24
25
strategy:
26
+ fail-fast: false
27
matrix:
28
node-version: [20.x, 22.x, 24.x]
29
30
steps:
31
- uses: actions/checkout@v4
32
- uses: pnpm/action-setup@v4
- name: Install pnpm
33
- uses: actions/setup-node@v4
34
with:
35
node-version: ${{ matrix.node-version }}
36
cache: pnpm
- - run: pnpm install --frozen-lockfile
- - run: pnpm lint
37
38
- run: pnpm test
0 commit comments