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 d7b6d54 commit 656be37Copy full SHA for 656be37
.github/workflows/build-test.yaml
@@ -10,18 +10,28 @@ on:
10
- fix-eslint
11
12
jobs:
13
- build:
+ build-lint:
14
runs-on: ubuntu-latest
15
steps:
16
- uses: actions/checkout@v4
17
+
18
+ - name: Set up Node.js
19
+ uses: actions/setup-node@v4
20
21
+ - name: Enable corepack
22
+ run: corepack enable pnpm
23
24
- name: Install dependencies
- run: pnpm install
25
+ run: pnpm install --frozen-lockfile
26
27
- name: Run lint
- run: pnpm check:lint
28
+ run: pnpm run check:lint
29
30
- name: Run format
- run: pnpm check:format
31
+ run: pnpm run check:format
32
33
+ - name: Run build
34
+ run: pnpm run build
35
36
- name: Run tests
- run: pnpm test
37
+ run: pnpm run test
0 commit comments