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.
2 parents 40acb4e + c89bfa1 commit 1d62617Copy full SHA for 1d62617
.github/workflows/ci.yml
@@ -23,8 +23,24 @@ jobs:
23
24
- name: Run tests
25
run: npm run test -- --coverage
26
+
27
+ style:
28
+ name: Style
29
+ runs-on: ubuntu-latest
30
+ steps:
31
+ - name: Check out code
32
+ uses: actions/checkout@v4
33
34
+ - name: Set up Node
35
+ uses: actions/setup-node@v4
36
+ with:
37
+ node-version: 18
38
39
+ - name: Install dependencies
40
+ run: npm ci
41
42
+ - name: Run formatting check
43
+ run: npm run format:check
44
45
46
0 commit comments