Skip to content

Commit a4004ff

Browse files
obadaDegclaude
andcommitted
ci: move style job into ci.yml and remove separate formatting workflow
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent d92b720 commit a4004ff

2 files changed

Lines changed: 20 additions & 25 deletions

File tree

.github/workflows/check-formatting.yml

Lines changed: 0 additions & 24 deletions
This file was deleted.

.github/workflows/ci.yml

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,23 @@ jobs:
2222
run: npm ci
2323

2424
- name: Run tests
25-
run: npm run test -- --coverage
25+
run: npm run test -- --coverage
26+
27+
style:
28+
name: Style
29+
runs-on: ubuntu-latest
30+
31+
steps:
32+
- name: Check out code
33+
uses: actions/checkout@v4
34+
35+
- name: Set up Node
36+
uses: actions/setup-node@v4
37+
with:
38+
node-version: 22
39+
40+
- name: Install dependencies
41+
run: npm ci
42+
43+
- name: Check formatting
44+
run: npm run format:check

0 commit comments

Comments
 (0)