issue # server pc change
Some checks failed
Test CI / build (push) Failing after 3s

This commit is contained in:
geonhee-min
2025-11-28 13:08:11 +09:00
parent 115c5e61f0
commit 3bea9bca11

View File

@@ -17,9 +17,24 @@ jobs:
- name: Check PWD - name: Check PWD
run: | run: |
echo $DOCKER_VOLUME echo "Docker volume: $DOCKER_VOLUME"
echo $PWD echo "PWD: $PWD"
ls . ls -la .
- name: Validate Node and Yarn Environment
run: |
if ! command -v node &> /dev/null
then
echo "Error: Node.js not found"
exit 1
fi
echo "Node.js version: $(node -v)"
if ! command -v yarn &> /dev/null
then
echo "Error: Yarn.js not found"
exit 1
fi
- name: Restore node_modules - name: Restore node_modules
id: cache-node id: cache-node