Skip to content

Commit b7c173a

Browse files
committed
Add linter step to CI workflow
1 parent c039387 commit b7c173a

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: Test
22

33
on:
44
push:
5-
branches: [ master, main ]
5+
branches: [ master ]
66
pull_request:
7-
branches: [ master, main ]
7+
branches: [ master ]
88

99
jobs:
1010
test:
@@ -21,5 +21,8 @@ jobs:
2121
- name: Install dependencies
2222
run: bun install
2323

24+
- name: Run linter
25+
run: bun run lint
26+
2427
- name: Run tests
2528
run: bun test

0 commit comments

Comments
 (0)