add dap analytics and route page send to about, acknowledgements, glo… #135
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: OpenACR editor accessibility testing | |
on: | |
pull_request: | |
jobs: | |
build-test: | |
name: Building app, run app and test for accessibility issues | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source. | |
uses: actions/checkout@v2 | |
- name: Install dependencies. | |
run: npm ci | |
- name: Build app. | |
run: export NODE_ENV=development && npm run build | |
- name: Run app. | |
run: export NODE_ENV=development && npm run dev & | |
- name: Run accessibility test against all URLs from .pa11yci. | |
run: npm run a11y-test |