debug(ci): add step to verify Node.js in PATH before checkout
Build and Deploy / Build Frontend (push) Failing after 2s
Build and Deploy / Build and Push Docker Image (push) Has been skipped

This commit is contained in:
2026-08-07 21:45:28 +08:00
parent 42cb37b5e3
commit 4c10a0032f
+8
View File
@@ -25,6 +25,14 @@ jobs:
working-directory: web
steps:
- name: Verify Node.js
run: |
which node || echo "node not found in PATH"
node --version || echo "node command failed"
echo "PATH: $PATH"
export PATH="/usr/local/bin:$PATH"
node --version
- name: Checkout repository
uses: actions/checkout@v4