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 28fae4a commit cde422eCopy full SHA for cde422e
1 file changed
.github/workflows/code-quality.yml
@@ -60,7 +60,7 @@ jobs:
60
FILES: ${{ steps.changes.outputs.files }}
61
# Unquoted $FILES intentionally word-splits the newline-separated list
62
# into separate path args. Safe given the has_files guard above.
63
- run: pnpm exec oxfmt --check $FILES
+ run: "pnpm exec oxfmt --check $FILES"
64
65
# TODO update this so lint failures fail CI
66
# Informational only — lint findings are surfaced in the logs but never
@@ -70,4 +70,4 @@ jobs:
70
continue-on-error: true
71
env:
72
73
- run: pnpm exec oxlint $FILES
+ run: "pnpm exec oxlint $FILES"
0 commit comments