Initial commit: Anti-Detect Browser handbook by @Anti-detect #2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |