Update main.yml #10
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: CI Pipeline Hanoi Towers | |
on: | |
push: | |
branches: | |
- master | |
- staging | |
- develop | |
jobs: | |
accessibility: | |
name: Web Accessibility Evaluation | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Axe | |
run: npm install @axe-core/cli -g | |
- name: Install Chrome Driver Manager | |
run: npm install -g browser-driver-manager | |
- name: Install Commander | |
run: npm install commander | |
- name: Install Chrome with Chrome Driver Manager | |
run: npx browser-driver-manager install chrome | |
- name: Run Axe | |
run: axe https://hanoi-frontend-prod-latest.onrender.com/ | |