Skip to content

Commit 29afe5e

Browse files
Update a11y.yml
1 parent 93cb08a commit 29afe5e

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

.github/workflows/a11y.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,21 @@ jobs:
4343
- name: Get Matching Chrome version
4444
run: npx browser-driver-manager install chrome
4545

46+
# DEBUGGING
4647
- name: Start Server
4748
run: |
4849
# Start server in background
4950
npx http-server ./_build/html -p 8080 -s &
5051
sleep 5
5152
52-
53+
# DEBUGGING
54+
- name: Debug Assets
55+
run: |
56+
# Find whatever the current CSS filename is
57+
CSS_PATH=$(find _build/html/build/_assets/ -name "app-*.css" | sed 's|_build/html||')
58+
echo "Checking for asset: $CSS_PATH"
59+
curl -I "http://localhost:8080$CSS_PATH"
60+
5361
# DEBUGGING
5462
- name: Debug - Curl Root Index
5563
run: curl -v http://localhost:8080/index.html

0 commit comments

Comments
 (0)