Skip to content

Commit d7b6d54

Browse files
chore: updated the build test workflow
1 parent 195088c commit d7b6d54

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/build-test.yaml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,23 @@ on:
55
branches:
66
- main
77

8+
push:
9+
branches:
10+
- fix-eslint
11+
812
jobs:
913
build:
1014
runs-on: ubuntu-latest
1115
steps:
1216
- uses: actions/checkout@v4
1317
- name: Install dependencies
1418
run: pnpm install
19+
20+
- name: Run lint
21+
run: pnpm check:lint
22+
23+
- name: Run format
24+
run: pnpm check:format
25+
26+
- name: Run tests
27+
run: pnpm test

0 commit comments

Comments
 (0)