Skip to content

Commit fa9e488

Browse files
committed
chore: update CI workflow to include testing, linting, formatting, and documentation generation
1 parent 8283209 commit fa9e488

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

.github/workflows/main.yaml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,19 @@ jobs:
1717
- name: Install dependencies
1818
run: npm install
1919
- name: Build
20-
run: npx tsc
20+
run: npm run build
21+
- name: Run tests
22+
run: npm run test
23+
- name: Run lint
24+
run: npm run lint
25+
- name: Run format
26+
run: npm run format
27+
- name: Run docs
28+
run: npm run docs
2129
- name: Run against junit
22-
run: npm run run:junit
30+
run: npm run e2e:junit
2331
- name: Run against minitest
24-
run: npm run run:minitest
32+
run: npm run e2e:minitest
2533
- name: Run against surefire
2634
run: npm run run:surefire
2735
- name: Run against glob

0 commit comments

Comments
 (0)