chore(deps): bump axios from 1.12.2 to 1.13.6 #161
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: Accessibility | |
| on: | |
| pull_request: | |
| push: | |
| branches: [master] | |
| concurrency: | |
| group: a11y-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| pa11y: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-node@v5 | |
| with: | |
| node-version-file: .node-version | |
| cache: npm | |
| - name: Install deps | |
| run: | | |
| rm -rf node_modules package-lock.json | |
| npm install | |
| # Workaround npm optional-deps quirk for Rollup on Linux | |
| - name: Patch Rollup native binary (Linux) | |
| if: runner.os == 'Linux' | |
| run: npm i --no-save --no-package-lock @rollup/rollup-linux-x64-gnu@^4 | |
| # Install start-server-and-test for running the server and tests | |
| - name: Install start-server-and-test | |
| run: npm i --no-save --no-package-lock start-server-and-test | |
| - name: Start server and run pa11y-ci | |
| run: npm run a11y:ci | |
| - name: Save JSON report (optional) | |
| if: always() | |
| run: npm run a11y:report || true | |
| - name: Upload a11y reports | |
| if: always() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: a11y-report | |
| path: reports/a11y/ |