diff options
| author | 2026-01-16 14:55:44 +0800 | |
|---|---|---|
| committer | 2026-01-16 14:55:44 +0800 | |
| commit | 066ffc6ecf27a531dbab76195230dae671ed3a0f (patch) | |
| tree | 5caf2fdd81cd22a349d7b8711ecedf4368bf7e72 /.github | |
| parent | c3a0bef0767aec88fdd619199bed4bad6b57057c (diff) | |
| download | DropOut-066ffc6ecf27a531dbab76195230dae671ed3a0f.tar.gz DropOut-066ffc6ecf27a531dbab76195230dae671ed3a0f.zip | |
chore: update Node.js and pnpm versions in CI workflow
Modified the GitHub Actions workflow to upgrade Node.js from version 20 to 22 and pnpm from version 8 to 9, ensuring compatibility with the latest features and improvements.
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/test.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ebf0b91..1f7f055 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -68,12 +68,12 @@ jobs: - name: Install Node.js uses: actions/setup-node@v4 with: - node-version: 20 + node-version: 22 - name: Install pnpm uses: pnpm/action-setup@v2 with: - version: 8 + version: 9 - name: Install Frontend Dependencies working-directory: ./ui |