Accessibility audit test #1
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: Accessibility audit | |
# **What it does**: Regularly audits API links in our documentation. | |
# **Why we have it**: It's too burdensome to check on every commit like we do for internal links. | |
# **Who does it impact**: PCX team | |
on: | |
schedule: | |
- cron: "0 0 * * 0" # Run at 00:00 UTC every Sunday | |
workflow_dispatch: | |
pull_request: | |
types: | |
- opened | |
jobs: | |
build: | |
runs-on: ubuntu-18.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install required Linux packages | |
run: | | |
sudo apt-get update | |
sudo apt-get install libgbm-dev | |
sudo apt-get install xvfb | |
- name: Use Node.js 12.x | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.1 | |
- name: Install npm packages | |
run: | | |
npm ci | |
- name: Build | |
run: | | |
npm run build | |
- name: Accessibility Audits | |
run: | | |
npm install -g @jakepartusch/lumberjack | |
xvfb-run --auto-servernum lumberjack --url https://developers.cloudflare.com |