Skip to content

Commit c89bfa1

Browse files
committed
Style Jobs
1 parent 70d02ca commit c89bfa1

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/ci.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,24 @@ jobs:
2323

2424
- name: Run tests
2525
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
2638

39+
- name: Install dependencies
40+
run: npm ci
2741

42+
- name: Run formatting check
43+
run: npm run format:check
2844

2945

3046

0 commit comments

Comments
 (0)