Skip to content

Commit c9d36cd

Browse files
committed
GitHub Workflows: add format check
1 parent e525d9c commit c9d36cd

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/checks.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ on:
88
branches: [ "master", "main" ]
99

1010
jobs:
11-
eslint:
12-
name: ESLint
11+
checks:
12+
name: Code checks
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout
@@ -20,6 +20,8 @@ jobs:
2020

2121
- name: Run ESLint
2222
run: npm run lint
23-
continue-on-error: true
2423

25-
# TODO: prettier/format checks, type checks...
24+
- name: Run Prettier
25+
run: npm run format-check
26+
27+
# TODO: type checks...

0 commit comments

Comments
 (0)