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 e24de8d0b6
commit 274aa50373
No known key found for this signature in database
GPG Key ID: 1D2C5225471789F9
2 changed files with 3 additions and 3 deletions

View File

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

View File

@ -1,6 +1,6 @@
{ {
"name": "sub-store", "name": "sub-store",
"version": "2.14.283", "version": "2.14.285",
"description": "Advanced Subscription Manager for QX, Loon, Surge, Stash and ShadowRocket.", "description": "Advanced Subscription Manager for QX, Loon, Surge, Stash and ShadowRocket.",
"main": "src/main.js", "main": "src/main.js",
"scripts": { "scripts": {