Add kit selftest CI, Outline sync script, and close ops soak gaps
CI / release (pull_request) Has been skipped
CI / skip-ci-check (pull_request) Successful in 4s
CI / secret-scan (pull_request) Successful in 4s
CI / build-and-test (pull_request) Successful in 16s
CI / selftest (pull_request) Failing after 39s

Fake-site Playwright suite catches BasePage/ApiClient/network regressions
before consumers pin a broken tag; Outline sync + docs for QA & Dev live page;
Pushgateway deploy soak confirmed separately on observability LXC.
This commit is contained in:
2026-07-14 22:56:07 -04:00
parent 3380ba9511
commit afaa987218
12 changed files with 561 additions and 14 deletions
+19
View File
@@ -45,6 +45,25 @@ jobs:
- name: Build
run: npm run build
# Real browser+HTTP self-test (not mocks). Catches BasePage/ApiClient/network
# regressions before consumers pin a broken tag. See docs/SELFTEST.md.
selftest:
needs: [skip-ci-check, build-and-test]
if: needs.skip-ci-check.outputs.should-skip != '1'
runs-on: [homelab, self-hosted, linux]
container:
image: mcr.microsoft.com/playwright:v1.52.0-jammy
steps:
- uses: actions/checkout@v4
- name: Install
run: npm ci
- name: Self-test against fake site
run: npm run selftest
env:
CI: 'true'
PLAYKIT_SELFTEST_PORT: '4173'
PLAYKIT_BASE_URL: 'http://127.0.0.1:4173'
secret-scan:
needs: skip-ci-check
if: needs.skip-ci-check.outputs.should-skip != '1'