Skip to content

Commit 19ddc1f

Browse files
committed
ci: add basic CI workflow
1 parent 8ad41dd commit 19ddc1f

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
run: npm ci
2121
- name: Build
2222
run: npm run build
23-
- name: Check code formatting
24-
run: |
25-
npx biome format . --report
26-
npx biome lint . --report
23+
- name: Check Formatting
24+
run: npx biome format .
25+
- name: Check Linting
26+
run: npx biome lint .

commitlint.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ export default {
44
'body-max-line-length': [0, 'always'],
55
'footer-max-line-length': [0, 'always'],
66
},
7-
};
7+
}

0 commit comments

Comments
 (0)