mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-28 06:08:50 +01:00
18 lines
No EOL
434 B
YAML
18 lines
No EOL
434 B
YAML
name: Lint for accessibility issues
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- 'client/src/**'
|
|
|
|
jobs:
|
|
axe-linter:
|
|
runs-on: ubuntu-latest
|
|
if: github.event.pull_request.head.repo.full_name == 'danny-avila/LibreChat'
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: dequelabs/axe-linter-action@v1
|
|
with:
|
|
api_key: ${{ secrets.AXE_LINTER_API_KEY }}
|
|
github_token: ${{ secrets.GITHUB_TOKEN }} |