Skip to content

Commit 753c4bf

Browse files
committed
Fix cicd
1 parent 7c6321a commit 753c4bf

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/check-pr.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ jobs:
1515
- uses: oven-sh/setup-bun@v2
1616
- run: bun i
1717
- run: |
18-
bun lint
1918
bun test
2019
bun build
20+
# eslint project can not lint before build
21+
bun lint

.github/workflows/publish.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,10 @@ jobs:
2424
- uses: oven-sh/setup-bun@v2
2525
- run: bun i
2626
- run: |
27-
bun lint
2827
bun test
2928
bun build
29+
# eslint project can not lint before build
30+
bun lint
3031
- uses: changepacks/action@main
3132
id: changepacks
3233
with:

0 commit comments

Comments
 (0)