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 c6cbb76 commit 04ff4f6Copy full SHA for 04ff4f6
.github/workflows/test.yml
@@ -17,6 +17,7 @@ jobs:
17
with:
18
node-version: ${{ matrix.node-version }}
19
- run: npm ci
20
- - run: npx prettier --check .
+ - run: npm run format:check
21
+ - run: npm run lint
22
- run: npm test
23
- run: npm run ts
package.json
@@ -17,6 +17,7 @@
"build": "tsc --project tsconfig.build.json",
"lint": "eslint .",
"format": "prettier --write .",
+ "format:check": "prettier --check .",
"test": "jest",
"ts": "tsc"
},
0 commit comments