Skip to content

Commit 9596b63

Browse files
committed
improve husky pre-commit for v10
1 parent b6b49e6 commit 9596b63

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

.github/workflows/ci.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ permissions:
1212
contents: read
1313

1414
env:
15-
pnpm-version: 10.2.1
16-
node-version: 23
15+
PNPM_VERSION: 10.2.1
1716

1817
jobs:
1918
ci:
@@ -23,11 +22,12 @@ jobs:
2322

2423
- uses: pnpm/action-setup@v2
2524
with:
26-
version: ${{ env.pnpm-version }}
25+
version: ${{ env.PNPM_VERSION }}
2726

2827
- uses: actions/setup-node@v4
2928
with:
30-
node-version: ${{ env.node-version }}
29+
node-version-file: .nvmrc
30+
cache: 'pnpm'
3131

3232
- name: Install dependencies
3333
run: pnpm install --frozen-lockfile

.husky/pre-commit

-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
#!/usr/bin/env sh
2-
. "$(dirname -- "$0")/_/husky.sh"
3-
41
echo "Running pre-commit checks..."
52

63
# Run lint-staged for code formatting and linting

.nvmrc

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
23
2+

0 commit comments

Comments
 (0)