This repository has been archived by the owner on Aug 15, 2024. It is now read-only.
VOTE-2473 Update site-wide alert for outage and update Alaska link (#… #1339
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: Cypress - AXE accessibility testing | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
LANG: en_US.UTF-8 | |
LANGUAGE: en_US | |
LC_ALL: en_US.UTF-8 | |
steps: | |
- name: Checkout source. | |
uses: actions/checkout@v4 | |
- name: Install node.js. | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '18' | |
- name: Install NPM dependencies. | |
run: npm install | |
- name: Build and start up hugo server. | |
run: npm run build && npm run start & sleep 30s | |
- name: Run Cypress Axe tests. | |
run: npm run cy:axe |