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 03e9e23 commit 6586ad2Copy full SHA for 6586ad2
.github/workflows/node.js.yml
@@ -25,5 +25,5 @@ jobs:
25
with:
26
node-version: ${{ matrix.node-version }}
27
- run: npm ci
28
- - run: npm run format
+ - run: npm run format:check
29
- run: npm run build
package.json
@@ -7,6 +7,7 @@
7
"author": "James George",
8
"license": "MIT",
9
"scripts": {
10
+ "format:check": "prettier --check index.js",
11
"format": "prettier --write index.js",
12
"build": "ncc build index.js -o dist"
13
},
0 commit comments