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 5296a4a commit 139f310Copy full SHA for 139f310
.github/workflows/ci.yml
@@ -7,12 +7,31 @@ on:
7
branches: [main]
8
9
jobs:
10
+ lint:
11
+ runs-on: ubuntu-latest
12
+
13
+ steps:
14
+ - uses: actions/checkout@v4
15
16
+ - uses: pnpm/action-setup@v4
17
+ with:
18
+ run_install: false
19
20
+ - uses: actions/setup-node@v4
21
22
+ node-version: '24'
23
+ cache: 'pnpm'
24
25
+ - run: pnpm install --frozen-lockfile
26
27
+ - run: pnpm lint
28
29
test:
30
runs-on: ubuntu-latest
31
32
strategy:
33
matrix:
- node-version: ['20', '22', '24']
34
+ node-version: ['18', '20', '22', '24']
35
36
steps:
37
- uses: actions/checkout@v4
@@ -28,8 +47,6 @@ jobs:
47
48
- run: pnpm install --frozen-lockfile
49
- - run: pnpm lint
-
50
- run: pnpm build
51
52
- run: pnpm test:all
0 commit comments