We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1bb817a commit 195078eCopy full SHA for 195078e
.github/workflows/CI.yml
@@ -31,6 +31,27 @@ jobs:
31
- name: Test
32
run: yarn test
33
34
+ codeQuality:
35
+ name: Code quality
36
+ needs: [build]
37
+ runs-on: ubuntu-22.04
38
+ steps:
39
+ - uses: actions/checkout@v4
40
+
41
+ - uses: actions/setup-node@v4
42
+ with:
43
+ node-version: 20
44
+ cache: yarn
45
46
+ - name: Install dependencies
47
+ run: yarn install --ignore-engines --frozen-lockfile
48
49
+ - name: Check format
50
+ run: yarn format
51
52
+ - name: Lint
53
+ run: yarn lint
54
55
nodeJsBaselineAptCompatibility:
56
name: NodeJS installed from stock Ubuntu-LTS packages (not external sources)
57
runs-on: ubuntu-22.04
0 commit comments