We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d68603 commit 7ca6e25Copy full SHA for 7ca6e25
.github/workflows/npm-checks.yml
@@ -48,12 +48,12 @@ jobs:
48
echo "Packages to check: $PACKAGES"
49
echo "packages=$PACKAGES" >> $GITHUB_OUTPUT
50
51
- - name: Run lint on all packages (Push)
52
- if: github.event_name == 'push'
+ - name: Run lint on all packages (Push or Manual)
+ if: github.event_name == 'push' || github.event_name == 'workflow_dispatch'
53
run: pnpm -r lint
54
55
- - name: Run format check on all packages (Push)
56
+ - name: Run format check on all packages (Push or Manual)
57
run: pnpm -r fmt:check
58
59
- name: Run lint on changed packages (PR)
0 commit comments