generated from Soontao/ts-project-template
-
Notifications
You must be signed in to change notification settings - Fork 0
52 lines (43 loc) · 1.16 KB
/
database.yml
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
41
42
43
44
45
46
47
48
49
50
51
52
name: database-test
on:
push:
branches:
- "*"
pull_request:
branches:
- "*"
jobs:
database-test:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
docker-images: ["mysql:5.7", "mysql:8", "mariadb:10"]
services:
db:
image: ${{ matrix.docker-images }}
env:
MYSQL_ALLOW_EMPTY_PASSWORD: yes
ports:
- 3306:3306
options: --health-cmd="mysqladmin ping" --health-interval=30s --health-timeout=5s --health-retries=10
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 18.x
cache: "npm"
- run: npm i -g npm
- run: npm ci
- name: setup mysql user
run: node ./docker/create_user.js
- name: test
run: npm run test
env:
CI: true
CDS_REQUIRES_DB_CREDENTIALS_HOST: "127.0.0.1"
CDS_REQUIRES_DB_CREDENTIALS_PORT: 3306
CDS_REQUIRES_DB_CREDENTIALS_DATABASE: cds_admin
CDS_REQUIRES_DB_CREDENTIALS_USER: cds_admin
CDS_REQUIRES_DB_CREDENTIALS_PASSWORD: cds_admin