Skip to content

Releases: SeoScoreAPI/seo-audit-action

SEO Audit Action v1

02 Apr 21:51

Choose a tag to compare

Run automated SEO audits on your website as part of your CI/CD pipeline. Catch SEO regressions before they ship to production.

What it does

  • Runs a 28-check SEO audit against any URL
  • Posts score, grade, and top issues to the GitHub Actions summary
  • Optionally fails the build if the score drops below your threshold
  • Returns score, grade, issue count, and report URL as step outputs

Inputs

Input Required Default Description
url Yes URL to audit
api-key Yes API key from seoscoreapi.com
threshold No 80 Minimum score to pass (0-100)
fail-on-threshold No true Fail the build if score is below threshold

Outputs

Output Description
score SEO score (0-100)
grade Letter grade (A+ to F)
issues Number of issues found
report-url Link to full report

Quick start

- name: SEO Audit
  uses: SeoScoreAPI/seo-audit-action@v1
  with:
    url: "https://your-site.com"
    api-key: ${{ secrets.SEO_SCORE_API_KEY }}
    threshold: 85

Get a free API key (5 audits/day) at seoscoreapi.com. No credit card required.

What gets checked

28 checks across 5 categories: meta & content, technical SEO, social/OG tags, performance, and accessibility.

Links

- Full documentation
- API docs
- Example workflow with PR comments