Skip to content

Commit e3fb2ef

Browse files
committed
debug
1 parent 00d0589 commit e3fb2ef

File tree

1 file changed

+16
-3
lines changed

1 file changed

+16
-3
lines changed

.github/workflows/update-app-events-data.yml

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,22 @@ jobs:
3434
- name: Create .env file
3535
run: echo "DISCOURSE_CORE=./discourse" > .env
3636

37-
- name: Extract App Events
38-
run: ls ./scripts
39-
# run: node ./scripts/extract_app_events.mjs
37+
# - name: Extract App Events
38+
# run: ls ./scripts
39+
# run: node ./scripts/extract_app_events.mjs
40+
41+
- name: Debug file existence
42+
run: |
43+
echo "Listing scripts directory:"
44+
ls -la ./scripts/
45+
echo "File existence check:"
46+
[ -f "./scripts/create_app_events_doc_markdown.mjs" ] && echo "File exists" || echo "File does not exist"
47+
echo "File permissions:"
48+
stat ./scripts/create_app_events_doc_markdown.mjs
49+
echo "File content check (first few lines):"
50+
head -n 5 ./scripts/create_app_events_doc_markdown.mjs || echo "Could not read file"
51+
echo "Node.js version:"
52+
node --version
4053
4154
- name: Generate App Events Details Doc
4255
run: node ./scripts/create_app_events_doc_markdown.mjs

0 commit comments

Comments
 (0)