CheckSite #2888
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: CheckSite | |
on: | |
workflow_dispatch: | |
inputs: | |
uri: | |
description: 'Website URI' | |
required: true | |
jobs: | |
build: | |
runs-on: [ self-hosted, its-runner ] | |
steps: | |
- name: Scan website | |
run: /srv/github-action-scripts/pa11y-scan.sh ${{ github.event.inputs.uri }} | |
- name: Create report | |
run: /srv/github-action-scripts/pa11y-report.sh ${{ github.event.inputs.uri }} | |
- name: Move report | |
run: /srv/github-action-scripts/pa11y-move-report.sh ${{ github.event.inputs.uri }} | |
- name: Update a11y config | |
run: cd /srv/github-action-scripts && pipenv run python pa11y_update_json.py --site "${{ github.event.inputs.uri }}" --directory "$GITHUB_WORKSPACE" | |
- name: Delete JSON file | |
run: rm $GITHUB_WORKSPACE/${{ github.event.inputs.uri }}.json |