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 a6b7e22 commit f454530Copy full SHA for f454530
.github/workflows/main.yml
@@ -24,7 +24,7 @@ jobs:
24
- run: npm install --no-package-lock
25
26
- name: Check formatting
27
- run: npm run format:check
+ run: npm run format
28
29
- name: Check syntax
30
run: npm run lint
package.json
@@ -29,7 +29,8 @@
"test": "jest $npm_package_directories_test --coverage",
"lint": "eslint ./src",
31
"lint:fix": "eslint ./src --fix",
32
- "format": "prettier --write ./src",
+ "format:check": "prettier --check ./src",
33
+ "format:write": "prettier --write ./src",
34
"npm:publish:dry-run": "npm publish --dry-run",
35
"npm:publish": "npm publish --access public",
36
"typecheck": "tsc --noEmit -p tsconfig.json --composite false",
0 commit comments