Skip to content

Commit a3ce61b

Browse files
committed
chore: fix deno resolving
1 parent 5303855 commit a3ce61b

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@ jobs:
3131
node-version: ${{ matrix.node }}
3232
cache: pnpm
3333

34+
- name: Install dependencies
35+
run: pnpm install --frozen-lockfile
36+
3437
- name: Lint codes
3538
run: pnpm lint
3639

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@
5151
"prepare": "git config --local core.hooksPath .githooks",
5252
"changelog": "gh-changelogen --repo=intlify/h3",
5353
"release": "bumpp --commit \"release: v%s\" --push --tag",
54-
"lint": "./node_modules/.bin/deno lint",
55-
"format": "./node_modules/.bin/deno fmt",
54+
"lint": "pnpm exec deno lint",
55+
"format": "pnpm exec deno fmt",
5656
"build": "unbuild",
5757
"play:basic": "pnpx tsx ./playground/basic/index.ts",
5858
"test": "pnpm run test:type && pnpm run test:unit",

0 commit comments

Comments
 (0)