File tree Expand file tree Collapse file tree 4 files changed +10
-16
lines changed
Expand file tree Collapse file tree 4 files changed +10
-16
lines changed Original file line number Diff line number Diff line change @@ -12,8 +12,8 @@ permissions:
1212 contents : read
1313
1414env :
15- pnpm-version : 10.2.1
16- node-version : 23
15+ PNPM_VERSION : 10.2.1
16+ NODE_VERSION : 23
1717
1818jobs :
1919 ci :
@@ -23,11 +23,11 @@ jobs:
2323
2424 - uses : pnpm/action-setup@v2
2525 with :
26- version : ${{ env.pnpm-version }}
26+ version : ${{ env.PNPM_VERSION }}
2727
2828 - uses : actions/setup-node@v4
2929 with :
30- node-version : ${{ env.node-version }}
30+ node-version : ${{ env.NODE_VERSION }}
3131
3232 - name : Install dependencies
3333 run : pnpm install --frozen-lockfile
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: Release
33on :
44 push :
55 branches :
6- - main
6+ - release
77
88permissions :
99 contents : write
@@ -12,8 +12,8 @@ permissions:
1212 packages : write
1313
1414env :
15- pnpm-version : 10.2.1
16- node-version : 23
15+ PNPM_VERSION : 10.2.1
16+ NODE_VERSION : 23
1717
1818jobs :
1919 release :
@@ -29,12 +29,12 @@ jobs:
2929 - name : Setup pnpm
3030 uses : pnpm/action-setup@v2
3131 with :
32- version : ${{ env.pnpm-version }}
32+ version : ${{ env.PNPM_VERSION }}
3333
3434 - name : Setup Node.js
3535 uses : actions/setup-node@v4
3636 with :
37- node-version : ${{ env.node-version }}
37+ node-version : ${{ env.NODE_VERSION }}
3838 cache : ' pnpm'
3939
4040 - name : Install dependencies
5353 env :
5454 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
5555 NPM_TOKEN : ${{ secrets.NPM_TOKEN }}
56- run : pnpm semantic-release
56+ run : pnpm semantic-release
Original file line number Diff line number Diff line change 1- #! /usr/bin/env sh
2- . " $( dirname -- " $0 " ) /_/husky.sh"
3-
41# Validate commit message with commitlint
52npx --no -- commitlint --edit $1
Original file line number Diff line number Diff line change 1- #! /usr/bin/env sh
2- . " $( dirname -- " $0 " ) /_/husky.sh"
3-
41echo "Running pre-commit checks..."
52
63# Run lint-staged for code formatting and linting
You can’t perform that action at this time.
0 commit comments