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 7ecd82a commit a0aacbdCopy full SHA for a0aacbd
1 file changed
.github/workflows/rescript-deno-ci.yml
@@ -21,7 +21,7 @@ jobs:
21
deno-version: v1.x
22
23
- name: Deno lint
24
- run: 'if ls **/*.ts >/dev/null 2>run: deno lint1 || ls *.ts >/dev/null 2>run: deno lint1; then deno lint; else echo "no TS sources to lint"; fi'
+ run: if find . -name "*.ts" -not -path "./.git/*" | grep -q .; then deno lint; else echo "no TS sources to lint"; fi
25
26
- name: Deno fmt check
27
run: deno fmt --check
0 commit comments