Skip to content

Commit 1ac25c0

Browse files
committed
undo temporary debug
1 parent 3931995 commit 1ac25c0

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

.github/workflows/main.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,18 @@ jobs:
3232
- uses: actions/setup-node@v4
3333
with:
3434
node-version: 'lts/*'
35-
check-latest: true
3635
- run: npm install
3736
- run: npm run lint
37+
38+
format:
39+
runs-on: ubuntu-latest
40+
steps:
41+
- uses: actions/checkout@v4
42+
- uses: actions/setup-node@v4
43+
with:
44+
node-version: 'lts/*'
45+
check-latest: true
46+
- run: npm install
3847
- run: npm run format:check
3948

4049
test-remote:

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@
1414
"build": "tsup",
1515
"format": "prettier --write .",
1616
"format:check": "prettier --check .",
17-
"lint": "npm-run-all --continue-on-error -s lint:*",
17+
"lint": "npm-run-all --continue-on-error --aggregate-output --parallel lint:*",
1818
"lint:docs": "markdownlint \"**/*.md\"",
1919
"lint:eslint-docs": "npm-run-all -s build \"update:eslint-docs -- --check\"",
20-
"lint:js": "eslint --cache --ignore-pattern \"**/*.md\" .",
20+
"lint:js": "eslint --cache --ignore-pattern \"**/*.md\"",
2121
"lint:js-docs": "eslint --no-inline-config \"**/*.md\"",
2222
"lint:package-json": "npmPkgJsonLint .",
2323
"release": "release-it",

0 commit comments

Comments
 (0)