Skip to content

Commit

Permalink
Added directory to ESLint workflow
Browse files Browse the repository at this point in the history
In the eslint.yml GitHub @actions workflow, there was no path specified for which files to lint. This commit specifies that all files within the project other than dependencies (`./`) should be processed by the linter.
  • Loading branch information
ZelnickB committed Aug 5, 2020
1 parent 9c9736e commit 2961275
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/eslint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@ jobs:
run: yarn --frozen-lockfile

- name: Run ESLint
run: npx eslint
run: npx eslint ./

0 comments on commit 2961275

Please sign in to comment.