Skip to content
Closed
Show file tree
Hide file tree
Changes from 3 commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
0df599a
playwright e2e tests
AustinKelsay Feb 21, 2026
ac26496
fix test placeholder strings
AustinKelsay Feb 21, 2026
c579a3e
test: add Playwright E2E smoke suite and patch dev dep vulnerabilities
AustinKelsay Feb 21, 2026
d3c38a2
fix: move env admin gate before validation, fix Bearer token
AustinKelsay Feb 21, 2026
3a6cb0b
fix: reject empty RELAYS in /api/env updates
AustinKelsay Feb 24, 2026
156ce53
fix: expand 127.0.0.0/8 loopback filter, harden E2E cosigner, and cle…
AustinKelsay Feb 24, 2026
33e14cd
fix: lazy ENV_FILE_PATH eval, peer-list hook deps/a11y, CI audit out…
AustinKelsay Feb 24, 2026
813aed6
chore: harden e2e smoke flows and CI/env safeguards
AustinKelsay Feb 24, 2026
609544b
fix: tighten smoke test docs and cleanup guards
AustinKelsay Feb 24, 2026
657c79c
fix: harden relay req validation and test safety
AustinKelsay Feb 24, 2026
959edf4
fix: harden e2e cleanup, docs, and context handling
AustinKelsay Feb 24, 2026
6d73a98
fix: harden e2e smoke setup and route test safety
AustinKelsay Feb 25, 2026
944ec63
fix: harden smoke test harness and teardown behavior
AustinKelsay Feb 25, 2026
557e4a5
fix: tighten e2e cleanup and env test safeguards
AustinKelsay Feb 25, 2026
816eb0f
fix: pin Bun version in docker and CI workflows
AustinKelsay Feb 25, 2026
5f8713b
fix: harden e2e smoke tests and peer-list collapse behavior
AustinKelsay Feb 25, 2026
3f6481f
fix: harden relay limits and teardown safety
AustinKelsay Feb 25, 2026
b068104
fix: tighten e2e ui and loopback validation
AustinKelsay Feb 25, 2026
61bd400
test: clarify configure navigation e2e flow
AustinKelsay Feb 26, 2026
3b8c825
fix: address review findings across routes, docs, and e2e
AustinKelsay Feb 26, 2026
eb65308
fix: harden credential save and auth validation flows
AustinKelsay Feb 26, 2026
a4ebdcb
chore: remove Playwright e2e suite from repo
AustinKelsay Feb 26, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 22 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ jobs:
- name: Type check
run: bun run tsc --noEmit

- name: Run route tests
run: bun test tests/routes

- name: Build frontend
run: bun run build

Expand Down Expand Up @@ -71,16 +74,33 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4

- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest

- name: Install dependencies
run: bun install --frozen-lockfile

- name: Run security audit
run: |
bun audit || true # Don't fail on audit issues for now
for attempt in 1 2 3; do
if bun audit; then
exit 0
fi
if [ "$attempt" -lt 3 ]; then
echo "bun audit failed (attempt $attempt), retrying..."
sleep 5
fi
done
echo "bun audit failed after retries"
exit 1

- name: Check for secrets
uses: trufflesecurity/trufflehog@main
with:
path: ./
extra_args: --debug --only-verified
continue-on-error: true

Comment thread
AustinKelsay marked this conversation as resolved.
docker:
runs-on: ubuntu-latest
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,12 @@ jobs:
echo "new_version=$NEW_VERSION" >> $GITHUB_OUTPUT
echo "version_number=${NEW_VERSION#v}" >> $GITHUB_OUTPUT

- name: Type check
run: bun run typecheck

- name: Run backend tests
run: bun run test:unit

- name: Build application
run: bun run build

Expand Down
114 changes: 57 additions & 57 deletions bun.lock

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion frontend/components/ui/peer-list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -611,10 +611,11 @@ const PeerList: React.FC<PeerListProps> = ({
<ChevronDown className="h-4 w-4 text-blue-400 flex-shrink-0" />
}
<span className="text-blue-200 text-sm font-medium select-none">Peer List</span>
<div onClick={e => e.stopPropagation()}>
<div onClick={e => e.stopPropagation()} onKeyDown={e => e.stopPropagation()}>
<Tooltip
position="right"
width="w-64"
focusable
trigger={<HelpCircle size={16} className="text-blue-400 cursor-pointer" />}
Comment thread
AustinKelsay marked this conversation as resolved.
Outdated
content={
<p>Shows the signing peers in your FROSTR group with online/offline status and ping latency. Use the refresh button to ping all peers and update their status.</p>
Expand Down
1 change: 1 addition & 0 deletions frontend/types/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@ export interface UpdateInfo {
updateAvailable: boolean;
releaseUrl?: string;
checkedAt?: string;
source?: 'github-release' | 'github-tags';
error?: string;
}

Expand Down
Loading