Skip to content

Commit

Permalink
feat: change versions in actions
Browse files Browse the repository at this point in the history
  • Loading branch information
diced committed Jan 9, 2025
1 parent 9d7f291 commit fa4d21e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
11 changes: 6 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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",
Expand Down Expand Up @@ -104,7 +105,7 @@
"typescript": "^5.7.2"
},
"engines": {
"node": ">=18"
"node": ">=22"
},
"packageManager": "[email protected].0"
"packageManager": "[email protected].3"
}

0 comments on commit fa4d21e

Please sign in to comment.