build(deps-dev): bump typescript from 5.9.3 to 6.0.2 in /src/test/nodejs/node-postgres #7848
Workflow file for this run
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
| on: | |
| push: | |
| branches: | |
| - postgresql-dialect | |
| pull_request: | |
| workflow_dispatch: | |
| name: samples | |
| jobs: | |
| java-samples: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup Java | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: zulu | |
| java-version: 17 | |
| - name: Run JDBC Sample tests | |
| working-directory: ./samples/java/jdbc | |
| run: mvn test -B -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn | |
| - name: Run R2DBC Sample tests | |
| working-directory: ./samples/java/r2dbc | |
| run: mvn test -B -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn | |
| - name: Run Hibernate Sample tests | |
| working-directory: ./samples/java/hibernate | |
| run: mvn test -B -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn | |
| - name: Run Spring Data JPA Sample tests | |
| working-directory: ./samples/java/spring-data-jpa | |
| run: mvn test -B -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn | |
| go-samples: | |
| runs-on: ubuntu-24.04-arm | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-go@v6 | |
| with: | |
| go-version: '1.26.1' | |
| - run: go version | |
| # Temporarily skipped due to a bug in the Emulator | |
| # - name: Run gorm Sample tests | |
| # working-directory: ./samples/golang/gorm | |
| # run: go test | |
| - name: Run pgx Sample tests | |
| working-directory: ./samples/golang/pgx | |
| run: go test | |
| - name: Run migrate Sample tests | |
| working-directory: ./samples/golang/migrate | |
| run: go test | |
| python-samples: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.12' | |
| - run: python --version | |
| - name: Install pip | |
| run: python -m pip install --upgrade pip | |
| - name: Run psycopg3 Sample tests | |
| working-directory: ./samples/python/psycopg3 | |
| run: | | |
| pip install -r requirements.txt | |
| python psycopg3_sample.py | |
| - name: Run SQLAlchemy2 Sample tests | |
| working-directory: ./samples/python/sqlalchemy2-sample | |
| run: | | |
| pip install -r requirements.txt | |
| python run_sample.py | |
| - name: Run Django Sample tests | |
| working-directory: ./samples/python/django | |
| run: | | |
| pip install -r requirements.txt | |
| python sample.py | |
| - name: Run connectorx sample tests | |
| working-directory: ./samples/python/connectorx | |
| run: | | |
| pip install -r requirements.txt | |
| python connectorx_sample.py | |
| nodejs-samples: | |
| runs-on: ubuntu-24.04-arm | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 24 | |
| - run: node --version | |
| - name: Run Knex Sample tests | |
| working-directory: ./samples/nodejs/knex | |
| run: | | |
| npm install | |
| npm start | |
| env: | |
| TESTCONTAINERS_HOST_OVERRIDE: 127.0.0.1 | |
| TESTCONTAINERS_RYUK_DISABLED: true | |
| - name: Run Sequelize Sample tests | |
| working-directory: ./samples/nodejs/sequelize | |
| run: | | |
| npm install | |
| npm start | |
| env: | |
| TESTCONTAINERS_HOST_OVERRIDE: 127.0.0.1 | |
| TESTCONTAINERS_RYUK_DISABLED: true | |
| - name: Run Prisma Sample tests | |
| working-directory: ./samples/nodejs/prisma-sample-app | |
| run: | | |
| npm install | |
| npm start | |
| env: | |
| TESTCONTAINERS_HOST_OVERRIDE: 127.0.0.1 | |
| TESTCONTAINERS_RYUK_DISABLED: true | |
| ruby-samples: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: '4.0.1' | |
| bundler-cache: true | |
| - run: ruby --version | |
| - name: Run Ruby on Rails ActiveRecord Sample tests | |
| working-directory: ./samples/ruby/activerecord | |
| run: | | |
| bundle install | |
| bundle exec rake run | |
| dotnet-samples: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: '8.0.x' | |
| - name: Run npgsql Sample tests | |
| working-directory: ./samples/dotnet/npgsql-sample | |
| run: dotnet run Program.cs | |
| php-samples: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: '8.3' | |
| tools: composer | |
| - run: php --version | |
| - name: Run PDO Sample tests | |
| working-directory: ./samples/php/pdo | |
| run: | | |
| composer install | |
| php pdo_sample.php |