-
Notifications
You must be signed in to change notification settings - Fork 11
73 lines (60 loc) · 1.52 KB
/
test.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
name: Test
on:
push:
branches: ['main']
pull_request:
branches: ['*']
jobs:
static:
name: ʦ Static analysis
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
- name: ⎔ Setup bun
uses: oven-sh/setup-bun@v1
- name: 📥 Install deps
run: bun install
- name: 🔎 Run checks
run: bunx turbo check
test:
name: ⚡ Test
runs-on: ubuntu-latest
env:
VITE_PG_DATABASE_URL: postgres://postgres:[email protected]:5432/testdb
VITE_MYSQL_DATABASE_URL: mysql://root:[email protected]:3306/testdb
services:
mysql:
image: mysql:8
env:
MYSQL_ROOT_PASSWORD: mysql
MYSQL_DATABASE: testdb
options: >-
--health-cmd "mysqladmin ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 3306:3306
postgres:
image: postgres:14
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: testdb
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
- name: ⎔ Setup bun
uses: oven-sh/setup-bun@v1
- name: 📥 Install deps
run: bun install
- name: 🧪 Test
run: bunx turbo test