{"id":31660403,"url":"https://github.com/accesslint/actions","last_synced_at":"2025-10-07T17:06:48.064Z","repository":{"id":316160576,"uuid":"1061375648","full_name":"AccessLint/actions","owner":"AccessLint","description":null,"archived":false,"fork":false,"pushed_at":"2025-09-27T19:19:03.000Z","size":3720,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-02T22:52:24.569Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/AccessLint.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":"SUPPORT.md","governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-09-21T19:29:28.000Z","updated_at":"2025-09-27T07:21:01.000Z","dependencies_parsed_at":"2025-09-23T03:39:09.470Z","dependency_job_id":null,"html_url":"https://github.com/AccessLint/actions","commit_stats":null,"previous_names":["accesslint/actions"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/AccessLint/actions","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AccessLint%2Factions","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AccessLint%2Factions/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AccessLint%2Factions/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AccessLint%2Factions/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AccessLint","download_url":"https://codeload.github.com/AccessLint/actions/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AccessLint%2Factions/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278811851,"owners_count":26050183,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-07T02:00:06.786Z","response_time":59,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-10-07T17:06:37.763Z","updated_at":"2025-10-07T17:06:48.059Z","avatar_url":"https://github.com/AccessLint.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# AccessLint - Accessibility Check\n\nGet accessibility feedback directly in your pull requests. Automatically scans changed files and posts inline code review comments with specific guidance on fixing accessibility issues.\n\n## Key Benefits\n\n- 🎯 **Inline code feedback** - Get specific accessibility guidance directly on your code changes\n- 🚀 **Zero setup** - Uses GitHub OIDC authentication, no tokens or configuration required\n- ⚡ **Smart scanning** - Only checks files that changed, not your entire codebase\n- 🔧 **Multi-framework** - Supports HTML, React/JSX, TypeScript, and Vue.js\n\n## Accessibility Coverage\n\n**49 automated accessibility rules** across web technologies:\n\n### Coverage Areas\n\n- **ARIA Implementation** - Proper roles, properties, and state management\n- **Keyboard \u0026 Focus** - Tab navigation and focus management\n- **Form Controls** - Labels, naming, and associations\n- **Media Content** - Image alt text and media descriptions\n- **Semantic Structure** - Headings, landmarks, and document organization\n- **Interactive Elements** - Button naming and accessible interactions\n\n### Supported Technologies\n\n- **HTML Documents** - Static pages and markup validation\n- **React/TypeScript** - JSX accessibility patterns and component validation\n- **Vue.js Applications** - Vue-specific accessibility requirements\n\n## Quick Setup\n\nCreate `.github/workflows/accesslint.yml` in your repository:\n\n```yaml\nname: 'AccessLint - Accessibility Check'\n\non:\n  pull_request:\n    types: [opened, synchronize, reopened]\n\npermissions:\n  contents: read\n  pull-requests: write\n  id-token: write\n\njobs:\n  accesslint:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v4\n        with:\n          fetch-depth: 0\n\n      - uses: accesslint/actions@v1.1.0\n        with:\n          mode: review\n          file-patterns: '**/*.{html,htm,jsx,tsx,vue}' # Customize as needed\n```\n\n## Configuration\n\n| Input | Description | Required | Default |\n|-------|-------------|----------|---------|\n| `mode` | Action mode: `review` for PR comments | Yes | N/A |\n| `file-patterns` | Glob patterns for files to check | No | `**/*.{html,htm,jsx,tsx,vue}` |\n| `pr-number` | PR number (for manual workflow dispatch) | No | N/A |\n\n## Troubleshooting\n\n**Action not running?**\n- Verify `mode: review` is specified in your workflow\n- Ensure required permissions are set: `contents: read`, `pull-requests: write`, `id-token: write`\n\n**No files being checked?**\n- Check that changed files match your `file-patterns`\n- Build artifacts (`node_modules/`, `dist/`) are automatically excluded\n\n**Authentication errors?**\n- No setup required - the action uses GitHub OIDC automatically\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faccesslint%2Factions","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faccesslint%2Factions","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faccesslint%2Factions/lists"}