We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ee3657 commit 9144555Copy full SHA for 9144555
.github/workflows/lint.yml
@@ -34,5 +34,7 @@ jobs:
34
run: |
35
# Check if diff is empty
36
git diff --exit-code --stat ${{ github.sha }} -- lib/
37
+ - name: Check format
38
+ run: npm run test:format
39
- name: Check for lint issues
40
run: npm run lint
package.json
@@ -42,6 +42,7 @@
42
"test:readable-stream-only": "node readable-stream-test/runner-prepare.mjs",
43
"coverage": "c8 -c ./c8.json tap --rcfile=./tap.yml test/parallel/test-*.js test/ours/test-*.js",
44
"format": "prettier -w src lib test",
45
+ "test:format": "prettier -c src lib test",
46
"lint": "eslint src"
47
},
48
"dependencies": {
0 commit comments