We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d666de5 commit b5c04fbCopy full SHA for b5c04fb
.github/workflows/build_lint.yml
@@ -12,10 +12,12 @@ jobs:
12
uses: actions/setup-node@v4
13
with:
14
node-version-file: '.nvmrc'
15
+ - name: Enable Corepack
16
+ run: corepack enable
17
- uses: bahmutov/npm-install@v1
18
19
useLockFile: false
20
- name: Lint
- run: npm run lint
21
+ run: yarn lint
22
- name: Typecheck
- run: npm run tsc
23
+ run: yarn tsc
package.json
@@ -7,7 +7,8 @@
7
"build": "next build",
8
"start": "next start",
9
"lint": "eslint .",
10
- "lint:fix": "eslint . --fix"
+ "lint:fix": "eslint . --fix",
11
+ "tsc": "tsc --noEmit"
},
"dependencies": {
"@heroicons/react": "^2.2.0",
0 commit comments