Skip to content

Commit 56246b6

Browse files
committed
Add debug step to check config files
1 parent caa243c commit 56246b6

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,15 @@ jobs:
3636
- name: Install dependencies
3737
run: npm ci
3838

39+
- name: Debug - Check config files
40+
run: |
41+
echo "=== Checking Next.js config files ==="
42+
ls -la next.config* || echo "No next.config files with wildcard"
43+
echo "=== Content of next.config.mjs ==="
44+
cat next.config.mjs
45+
echo "=== Git commit info ==="
46+
git log -1 --oneline
47+
3948
- name: Build with Next.js
4049
run: npm run build
4150
env:

0 commit comments

Comments
 (0)