-
Notifications
You must be signed in to change notification settings - Fork 13
126 lines (107 loc) · 3.14 KB
/
test.database-sql.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
name: SQLite / Postgres / MySQL
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
test-sqlite:
name: Test SQLite
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x]
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
working-directory: ./packages/databases/database-sqlite
run: npm ci
- name: Test
run: npm test
working-directory: ./packages/databases/database-sqlite
test-postgres:
name: Test Postgres
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x]
services:
postgres:
# Docker Hub image
image: postgres
# Provide the password for postgres
env:
POSTGRES_PASSWORD: postgres
# Set health checks to wait until postgres has started
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
working-directory: ./packages/databases/database-postgres
run: npm ci
- name: Test
run: npm test
working-directory: ./packages/databases/database-postgres
# Environment variables used by the `client.js` script to create
# a new PostgreSQL table.
env:
POSTGRES_HOST: localhost
POSTGRES_PORT: 5432
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
test-mysql:
name: Test MySql
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x]
services:
mysql:
# Docker Hub image
image: mysql
env:
MYSQL_DATABASE: main
MYSQL_ROOT_PASSWORD: password
# Set health checks
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
ports:
- 3306:3306
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
working-directory: ./packages/databases/database-mysql
run: npm ci
- name: Test
run: npm test
working-directory: ./packages/databases/database-mysql
env:
# The hostname used to communicate with the mysql service container
MYSQL_DATABASE: main
MYSQL_USER: root
MYSQL_PASSWORD: password
MYSQL_PORT: 3306
MYSQL_HOST: localhost