chore: bump version to 2.15.6 #930
Workflow file for this run
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: Linting for accessibility issues | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: dequelabs/axe-linter-action@v1 | |
| # Deque subscription for AXE_LINTER_API_KEY is expired; the action executes | |
| # the API error message and fails every run. Non-blocking until renewed. | |
| continue-on-error: true | |
| with: | |
| api_key: ${{ secrets.AXE_LINTER_API_KEY }} | |
| github_token: ${{ secrets.GITHUB_TOKEN }} |