+3
-3
.github/workflows/publish.yml
+3
-3
.github/workflows/publish.yml
···
24
24
25
25
- name: Verify code quality
26
26
run: |
27
-
deno fmt --check
28
-
deno lint
29
-
deno check **/*.ts
27
+
git ls-files '*.ts' '*.js' '*.tsx' '*.jsx' | xargs -r deno fmt --check
28
+
git ls-files '*.ts' '*.js' '*.tsx' '*.jsx' | xargs -r deno lint
29
+
git ls-files '*.ts' | xargs -r deno check
30
30
31
31
- name: Run tests
32
32
run: deno test --allow-all