Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
30 changes: 30 additions & 0 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: E2E · Ask Agent

on:
pull_request:
push:
branches: [main, develop]

jobs:
e2e:
name: Playwright · Ask Agent
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Install Playwright browser
run: npx playwright install --with-deps chromium
- name: Run Ask Agent E2E suite
run: npm run test:e2e
- name: Upload report on failure
if: failure()
uses: actions/upload-artifact@v4
with:
name: playwright-report
path: playwright-report/
retention-days: 7
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,9 @@ public/sqlite/
# Unbuilt api-client planning docs (kept local until that feature is picked up)
docs/superpowers/plans/2026-08-09-api-client.md
docs/superpowers/specs/2026-08-09-api-client-design.md

# Playwright
/test-results/
/playwright-report/
/blob-report/
/playwright/.cache/
13 changes: 12 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,18 @@
[![Tools](https://img.shields.io/badge/tools-193-16a34a)](https://goodwebtools.com)
[![PRs welcome](https://img.shields.io/badge/PRs-welcome-ec4899.svg)](#contributing)

<a href="https://goodwebtools.com"><img src="docs/images/hero.png" alt="GoodWebTools homepage — a searchable grid of 193 privacy-first browser tools across Image, PDF, Dev, Media and more" width="820"></a>
<table>
<tr>
<td width="58%"><img src="docs/images/hero.png" alt="GoodWebTools on desktop — searchable grid of 193 privacy-first browser tools across Image, PDF, Dev, Media and more"></td>
<td width="21%"><img src="docs/images/mobile-hero.png" alt="GoodWebTools on mobile — responsive tool grid that works in any phone browser"></td>
<td width="21%"><img src="docs/images/mobile-menu.png" alt="GoodWebTools mobile floating category menu for quick navigation between tool categories"></td>
</tr>
<tr>
<td align="center"><em>Desktop</em></td>
<td align="center"><em>Mobile</em></td>
<td align="center"><em>Mobile category menu</em></td>
</tr>
</table>

⭐ **If GoodWebTools is useful, star the repo — it helps other people find privacy-first tools.**

Expand Down
Binary file added docs/images/mobile-hero.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/mobile-menu.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Loading