fix: lower Node.js minimum to >=20.0.0 for drizzle, typeorm, and mikr… #2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Nodejs TypeORM Tests | |
| on: | |
| push: | |
| branches: | |
| - master | |
| paths: | |
| - nodejs/sqlcommenter-nodejs/packages/sqlcommenter-typeorm/** | |
| pull_request: | |
| paths: | |
| - nodejs/sqlcommenter-nodejs/packages/sqlcommenter-typeorm/** | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: pnpm/action-setup@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: "24" | |
| cache: pnpm | |
| cache-dependency-path: nodejs/sqlcommenter-nodejs/packages/sqlcommenter-typeorm/pnpm-lock.yaml | |
| - run: pnpm install | |
| working-directory: ./nodejs/sqlcommenter-nodejs/packages/sqlcommenter-typeorm | |
| - run: pnpm run build | |
| working-directory: ./nodejs/sqlcommenter-nodejs/packages/sqlcommenter-typeorm | |
| - run: pnpm test | |
| working-directory: ./nodejs/sqlcommenter-nodejs/packages/sqlcommenter-typeorm |