Skip to content

Initial commit: Anti-Detect Browser handbook by @Anti-detect #2

Initial commit: Anti-Detect Browser handbook by @Anti-detect

Initial commit: Anti-Detect Browser handbook by @Anti-detect #2

Workflow file for this run

name: Docs CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
markdown:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check required docs exist
run: |
test -f README.md
test -f ANTI-DETECT-BROWSER-INDEX.md
test -f docs/ANTIDETECT-BROWSER-FAQ.md
test -f LICENSE
test -f CONTRIBUTING.md
- name: Block legacy affiliate domains
run: |
! grep -riE 'adblogin\.com|ToolsKiemTrieuDo|business@adblogin' --include='*.md' . || \
(echo 'Forbidden legacy links found' && exit 1)
- name: Verify official pricing URL present in README
run: grep -q 'multilogin.com/pricing' README.md