Skip to content

Commit

Permalink
run check
Browse files Browse the repository at this point in the history
  • Loading branch information
jdettmannnava committed Dec 17, 2024
1 parent edf54fd commit 4f615c5
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/check_508_compliance.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Check 508 Compliance

on:
push:
paths:
- .github/worflows/check_508_compliance.yml

jobs:
compliance_check:
steps:
- name: Run Axe
env:
TARGET_BASE_URL: 'https://stage.dpc.cms.gov'
run: |
TARGETS_TO_SCAN="${TARGET_TEST_ENV}"
TARGETS_TO_SCAN="${TARGETS_TO_SCAN} ${TARGET_TEST_ENV}/faq.html"
TARGETS_TO_SCAN="${TARGETS_TO_SCAN} ${TARGET_TEST_ENV}/data.html"
TARGETS_TO_SCAN="${TARGETS_TO_SCAN} ${TARGET_TEST_ENV}/pilot.html"
TARGETS_TO_SCAN="${TARGETS_TO_SCAN} ${TARGET_TEST_ENV}/docsV1.html"
TARGETS_TO_SCAN="${TARGETS_TO_SCAN} ${TARGET_TEST_ENV}/docsV2.html"
TARGETS_TO_SCAN="${TARGETS_TO_SCAN} ${TARGET_TEST_ENV}/updates.html"
RESULTS=`docker run --init --rm --cap-add=SYS_ADMIN orenfromberg/axe-puppeteer-ci:1.0.0@sha256:f83527a3ae8ab74088c001abfe44836946ba73f0afbbf460447f8a0c40281e70 ${TARGETS_TO_SCAN}`
echo $RESULTS

0 comments on commit 4f615c5

Please sign in to comment.