We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 96315ed commit 70b47bdCopy full SHA for 70b47bd
.github/workflows/unit-test.yml
@@ -7,6 +7,26 @@ 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@v2
17
+ name: Install pnpm
18
19
+ - uses: actions/setup-node@v4
20
+ with:
21
+ node-version: lts/*
22
+ cache: pnpm
23
24
+ - name: Install deps
25
+ run: pnpm i --frozen-lockfile
26
27
+ - name: Lint
28
+ run: pnpm lint
29
30
test:
31
strategy:
32
matrix:
@@ -30,8 +50,5 @@ jobs:
50
- name: Install deps
51
run: pnpm i --frozen-lockfile
52
33
- - name: Lint
34
- run: pnpm lint
35
-
36
53
- name: Build
37
54
run: pnpm build
0 commit comments