Skip to content

feat: Add sequelize sample for javascript (#74) #65

feat: Add sequelize sample for javascript (#74)

feat: Add sequelize sample for javascript (#74) #65

Workflow file for this run

name: JavaScript CI
on:
push:
paths:
- '.github/workflows/javascript.yml'
- 'javascript/**'
pull_request:
paths:
- '.github/workflows/javascript.yml'
- 'javascript/**'
jobs:
ci:
strategy:
matrix:
module:
- name: 'mysql2'
with_oceanbase_container: true
- name: 'sequelize'
with_oceanbase_container: true
- name: 'prisma'
with_oceanbase_container: true
oceanbase_image_tag: '4.2.2'
- name: 'typeorm'
with_oceanbase_container: true
- name: 'drizzle'
with_oceanbase_container: true
oceanbase_image_tag: '4.2.3_BETA'
uses: ./.github/workflows/basic-workflow.yml
with:
language: 'javascript'
module: ${{ matrix.module.name }}
with_oceanbase_container: ${{ matrix.module.with_oceanbase_container }}
oceanbase_image_tag: ${{ matrix.module.oceanbase_image_tag }}