We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 93cb08a commit 29afe5eCopy full SHA for 29afe5e
1 file changed
.github/workflows/a11y.yml
@@ -43,13 +43,21 @@ jobs:
43
- name: Get Matching Chrome version
44
run: npx browser-driver-manager install chrome
45
46
+ # DEBUGGING
47
- name: Start Server
48
run: |
49
# Start server in background
50
npx http-server ./_build/html -p 8080 -s &
51
sleep 5
52
-
53
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
+
61
# DEBUGGING
62
- name: Debug - Curl Root Index
63
run: curl -v http://localhost:8080/index.html
0 commit comments