feat: change versions in actions

This commit is contained in:
diced
2025-01-09 12:42:20 -08:00
parent 9d7f2915df
commit fa4d21ecac
3 changed files with 8 additions and 7 deletions

View File

@@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: [18.x, 20.x, 21.x]
node: [20.x, 22.x, 23.x]
steps:
- uses: actions/checkout@v3

View File

@@ -19,7 +19,7 @@ Here are some simple instructions to get Zipline v4 running and ready to develop
## Prerequisites
- nodejs (lts -> 21.x or 18.x)
- nodejs (lts -> 20.x, 22.x)
- pnpm (9.x)
- a postgresql server

View File

@@ -4,7 +4,7 @@
"license": "MIT",
"version": "4.0.0-dev+1",
"scripts": {
"build": "pnpm run \"/^build:.*/\"",
"build": "pnpm run --stream \"/^build:.*/\"",
"build:prisma": "prisma generate",
"build:next": "ZIPLINE_BUILD=true next build",
"build:server": "tsup",
@@ -13,10 +13,11 @@
"start": "NODE_ENV=production node --trace-warnings --require dotenv/config --enable-source-maps ./build/server",
"start:inspector": "NODE_ENV=production node --require dotenv/config --inspect=0.0.0.0:9229 --enable-source-maps ./build/server",
"ctl": "NODE_ENV=production node --require dotenv/config --enable-source-maps ./build/ctl",
"validate": "pnpm run \"/^validate:.*/\"",
"validate": "pnpm run --stream \"/^validate:.*/\"",
"validate:lint": "eslint --cache --fix .",
"validate:format": "prettier --write --ignore-path .gitignore .",
"db:prototype": "prisma db push --skip-generate && prisma generate --no-hints"
"db:prototype": "prisma db push --skip-generate && prisma generate --no-hints",
"db:migrate": "prisma migrate dev --create-only"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.717.0",
@@ -104,7 +105,7 @@
"typescript": "^5.7.2"
},
"engines": {
"node": ">=18"
"node": ">=22"
},
"packageManager": "pnpm@9.15.0"
"packageManager": "pnpm@9.15.3"
}