mirror of
https://github.com/diced/zipline.git
synced 2025-12-12 07:40:45 -08:00
feat: change versions in actions
This commit is contained in:
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
@@ -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
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
11
package.json
11
package.json
@@ -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"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user