-
Notifications
You must be signed in to change notification settings - Fork 0
86 lines (74 loc) · 2.43 KB
/
integration-tests.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
name: Integration Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
integration-tests:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:latest
env:
POSTGRES_USER: testuser
POSTGRES_PASSWORD: testpassword
POSTGRES_DB: testdb
ports:
- 5432:5432
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- uses: actions/checkout@v4
- name: Use Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: '20.x'
cache: 'npm'
- name: Cache node_modules
uses: actions/cache@v4
id: npm-cache
with:
path: |
**/node_modules
~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install dependencies
if: steps.npm-cache.outputs.cache-hit != 'true'
run: npm ci
- name: Set environment variables
env:
SUPABASE_ANON_KEY: ${{ secrets.SUPABASE_ANON_KEY }}
SUPABASE_URL: ${{ secrets.SUPABASE_URL }}
TEST_DATABASE_URL: ${{ secrets.TEST_DATABASE_URL }}
TEST_USER_UUID: ${{ secrets.TEST_USER_UUID }}
run: |
echo "SUPABASE_ANON_KEY=${SUPABASE_ANON_KEY}" >> $GITHUB_ENV
echo "SUPABASE_URL=${SUPABASE_URL}" >> $GITHUB_ENV
echo "TEST_DATABASE_URL=${TEST_DATABASE_URL}" >> $GITHUB_ENV
echo "DATABASE_URL=${TEST_DATABASE_URL}" >> $GITHUB_ENV
echo "TEST_USER_UUID=${TEST_USER_UUID}" >> $GITHUB_ENV
- name: Generate test migrations
run: npm run drizzle:generate:test
env:
NODE_ENV: test
- name: Run test migrations
run: npm run drizzle:migrate:test
env:
NODE_ENV: test
DATABASE_URL: postgresql://testuser:testpassword@localhost:5432/testdb
- name: Run integration tests with coverage
run: |
npm run test:integration -- --coverage --verbose --runInBand --detectOpenHandles
env:
NODE_ENV: test
DATABASE_URL: postgresql://testuser:testpassword@localhost:5432/testdb
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}