Skip to content

Commit 7ca6e25

Browse files
committed
ci: manually trigger to js checks workflows
1 parent 2d68603 commit 7ca6e25

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/npm-checks.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,12 @@ jobs:
4848
echo "Packages to check: $PACKAGES"
4949
echo "packages=$PACKAGES" >> $GITHUB_OUTPUT
5050
51-
- name: Run lint on all packages (Push)
52-
if: github.event_name == 'push'
51+
- name: Run lint on all packages (Push or Manual)
52+
if: github.event_name == 'push' || github.event_name == 'workflow_dispatch'
5353
run: pnpm -r lint
5454

55-
- name: Run format check on all packages (Push)
56-
if: github.event_name == 'push'
55+
- name: Run format check on all packages (Push or Manual)
56+
if: github.event_name == 'push' || github.event_name == 'workflow_dispatch'
5757
run: pnpm -r fmt:check
5858

5959
- name: Run lint on changed packages (PR)

0 commit comments

Comments
 (0)