Skip to content

Commit e65d8a8

Browse files
committed
Add eslint step in frontend code CI
1 parent c90211d commit e65d8a8

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/_frontend_code.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
- main
1010

1111
jobs:
12-
lint:
12+
code_checks:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout repository code
@@ -27,3 +27,7 @@ jobs:
2727
- name: Check Formatting of TypeScript Code
2828
working-directory: frontend
2929
run: npm run format:check
30+
31+
- name: Check Linting Rules for TypeScript Code
32+
working-directory: frontend
33+
run: npm run lint

0 commit comments

Comments
 (0)