-
Notifications
You must be signed in to change notification settings - Fork 23
40 lines (33 loc) · 984 Bytes
/
javascript.yml
File metadata and controls
40 lines (33 loc) · 984 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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 }}