Remove "8 weeks" banner and add more detail to /about/product #501
Workflow file for this run
This file contains 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: Testing | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
pa11y-scan: | |
# Pinned to 20.04 because pa11y-ci fails to run on 22.04 | |
# See the discussion on https://github.com/pa11y/pa11y-ci/issues/198 | |
# and https://github.com/pa11y/pa11y/issues/651 | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '17.x' | |
- name: Install node dependencies | |
run: npm install | |
- name: Accessibility scan | |
run: npm run pa11y |