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 2e225f7 commit 2b780beCopy full SHA for 2b780be
.github/workflows/CI.yml
@@ -8,6 +8,27 @@ on:
8
types: [opened, synchronize]
9
10
jobs:
11
+ codeQuality:
12
+ name: Code quality
13
+ needs: [build]
14
+ runs-on: ubuntu-22.04
15
+ steps:
16
+ - uses: actions/checkout@v4
17
+
18
+ - uses: actions/setup-node@v4
19
+ with:
20
+ node-version: 20
21
+ cache: yarn
22
23
+ - name: Install dependencies
24
+ run: yarn install --ignore-engines --frozen-lockfile
25
26
+ - name: Check format
27
+ run: yarn format
28
29
+ - name: Lint
30
+ run: yarn lint
31
32
build:
33
strategy:
34
matrix:
0 commit comments