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 4e75c39 commit 5353f16Copy full SHA for 5353f16
.github/workflows/ci.yml
@@ -20,7 +20,7 @@ jobs:
20
strategy:
21
fail-fast: true
22
matrix:
23
- script: ["format", "lint", "typecheck:ci"]
+ script: ["format", "lint:ci", "typecheck:ci"]
24
25
steps:
26
- name: Checkout repo
package.json
@@ -63,6 +63,7 @@
63
"format:fix": "prettier . --write",
64
"lint": "next lint",
65
"lint:fix": "next lint --fix",
66
+ "lint:ci": "next build --no-lint && next lint",
67
"now-build": "pnpm run build",
68
"start": "next start",
69
"typecheck": "tsc --noEmit",
0 commit comments