-
-
Notifications
You must be signed in to change notification settings - Fork 0
27 lines (25 loc) · 803 Bytes
/
Copy pathdocker.yml
File metadata and controls
27 lines (25 loc) · 803 Bytes
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
# Docker guard: proves the complete production image surface on a Docker-capable
# runner every PR. Separate from ci.yml (Local Gates) because it needs a Docker
# daemon and is slower.
name: Docker
on:
pull_request:
push:
branches: [main]
jobs:
docker-self-dogfood:
name: Complete Docker self-dogfood
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 24
- name: Enable pnpm
run: |
corepack enable
corepack prepare pnpm@11.7.0 --activate
# Builds once, proves domain/transport/auth/persistence behavior, then
# reuses the image for the HA and edge child gates.
- name: Run complete Docker self-dogfood
run: pnpm dogfood:docker-self