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