-
Notifications
You must be signed in to change notification settings - Fork 1
76 lines (64 loc) · 1.75 KB
/
Copy pathpgpm-test.yaml
File metadata and controls
76 lines (64 loc) · 1.75 KB
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
name: pgpm integration tests
on:
push:
branches: [main]
paths:
- 'pgpm/**'
- 'pgpm.json'
- '.github/workflows/pgpm-test.yaml'
pull_request:
branches: [main]
paths:
- 'pgpm/**'
- 'pgpm.json'
- '.github/workflows/pgpm-test.yaml'
workflow_dispatch: {}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
pgpm-test:
name: pgpm deploy test
runs-on: ubuntu-latest
env:
PGHOST: localhost
PGPORT: 5432
PGUSER: postgres
PGPASSWORD: password
services:
pg_db:
image: constructiveio/postgres-plus:18
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: password
options: >-
--health-cmd "pg_isready -U postgres"
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Setup pnpm
uses: pnpm/action-setup@v6
- name: Setup Node.js
uses: actions/setup-node@v5
with:
node-version: '22'
cache: 'pnpm'
- name: Install pgpm CLI
run: npm install -g pgpm
- name: Seed pg users
run: pgpm admin-users bootstrap --yes
- name: Install pgpm module dependencies
run: |
for mod in pgpm/*/; do
if [ -f "$mod"/*.control ]; then
echo "Installing deps for $mod"
cd "$mod" && pgpm install && cd ../.. || cd ../..
fi
done
- name: Run pgpm full-cycle test (deploy/verify/revert/deploy)
run: pgpm test-packages --full-cycle --exclude constructive-infra-services,constructive-infra-seed