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 5dc24e3 commit 34de711Copy full SHA for 34de711
.github/workflows/deno_lint.yml
@@ -29,7 +29,7 @@ jobs:
29
run: npm install -g deno
30
31
- name: Run linter
32
- run: deno lint *.js tests
+ run: find . -type f \( -iname "*.js" ! -path "./node_modules/*" ! -path "./tests/*.test-jest.js" \) -print0 | xargs -0 deno lint
33
34
- name: Run Deno tests
35
run: npm run test-deno
0 commit comments