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 b82ea88 commit 0d45fa0Copy full SHA for 0d45fa0
‎.github/workflows/lint.yml
@@ -42,7 +42,11 @@ jobs:
42
43
- name: "Checking format errors"
44
run: |
45
- pnpm --filter ...[${{ steps.since.outputs.SINCE }}] format:check
+ # Could also use pnpm --filter [${{ steps.since.outputs.SINCE }}] format:check
46
+ # But this way we can see the diff
47
+ pnpm --filter [${{ steps.since.outputs.SINCE }}] format
48
+ git diff | head -n 100
49
+ git diff --name-only --exit-code
50
51
- name: Check types
52
run: pnpm --filter ...[${{ steps.since.outputs.SINCE }}] check
0 commit comments