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 0702d8e commit baf88cdCopy full SHA for baf88cd
.github/workflows/ci.yml
@@ -9,6 +9,25 @@ on:
9
pull_request:
10
11
jobs:
12
+ lint:
13
+ name: Lint
14
+ runs-on: windows-2022
15
+ permissions:
16
+ contents: read
17
+ timeout-minutes: 10
18
+ steps:
19
+ - uses: actions/checkout@v2
20
+ with:
21
+ submodules: recursive
22
+ - name: Install Node.js
23
+ uses: actions/[email protected]
24
25
+ node-version: 22.14.0
26
+ - name: Install dependencies
27
+ run: yarn
28
+ - name: Lint
29
+ run: yarn check-prettier
30
+
31
build:
32
name: Build
33
runs-on: windows-2022
@@ -30,8 +49,6 @@ jobs:
49
node-version: 22.14.0
50
- name: Install and build dependencies
51
run: yarn
- - name: Lint
34
- run: yarn check-prettier
35
52
- name: Build
36
53
run: yarn build
37
54
- name: Test
0 commit comments