ci: GitHub Actions: Transitioning from Node 16 to Node 20

This commit is contained in:
xream
2024-04-17 01:02:05 +08:00
parent 053327bf93
commit d5f3f7f10e
2 changed files with 3 additions and 3 deletions

View File

@@ -21,11 +21,11 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: "16"
node-version: "20"
- name: Install dependencies
run: |
npm install -g pnpm
cd backend && pnpm i
cd backend && pnpm i --no-frozen-lockfile
- name: Test
run: |
cd backend