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 3171614 commit 500eb14Copy full SHA for 500eb14
.github/workflows/ci.yml
@@ -30,16 +30,8 @@ jobs:
30
with:
31
node-version: lts/*
32
33
- - uses: pnpm/action-setup@1e1c8eafbd745f64b1ef30a7d7ed7965034c486c
34
- name: Install pnpm
35
- with:
36
- cache: true
37
-
38
- - name: 📦 Install dependencies
39
- run: pnpm install
40
41
- name: 🔠 Lint project
42
- run: pnpm lint
+ run: node --run lint:ci
43
44
test:
45
runs-on: ubuntu-latest
package.json
@@ -19,6 +19,7 @@
19
"knip": "knip",
20
"knip:fix": "knip --fix",
21
"lint": "vite lint && vite fmt --check",
22
+ "lint:ci": "npx oxlint && npx oxfmt --check",
23
"lint:fix": "vite lint --fix && vite fmt",
24
"generate": "nuxt generate",
25
"npmx-connector": "pnpm --filter npmx-connector dev",
0 commit comments