We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c837fc commit 25f2b09Copy full SHA for 25f2b09
.github/workflows/check_fix_push.yml
@@ -7,22 +7,28 @@ on:
7
8
permissions: write-all
9
10
+env:
11
+ FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
12
+
13
jobs:
14
check:
15
runs-on: ubuntu-latest
16
if: |
17
${{ github.event.head_commit.message!='chore(actions): check_format_lint' }}
18
steps:
19
- name: 检出仓库代码
- uses: actions/checkout@v4
20
+ uses: actions/checkout@v5
21
22
- name: 配置 Node.js 运行环境
- uses: actions/setup-node@v4
23
+ uses: actions/setup-node@v5
24
with:
- node-version: 22
25
+ node-version: 25
26
+ package-manager-cache: false
27
- - name: 配置 pnpm 包管理器
- uses: pnpm/action-setup@v4
28
+ - name: 启用 corepack 并安装 pnpm
29
+ run: |
30
+ corepack enable
31
+ corepack prepare pnpm@latest --activate
32
33
- name: 安装项目依赖
34
run: pnpm install
0 commit comments