fix(ci): fix Validate stage quote issue

This commit is contained in:
zio 2026-06-01 01:32:18 +09:00
parent 82c9c79f04
commit a28c5cc105

2
Jenkinsfile vendored
View File

@ -13,7 +13,7 @@ pipeline {
stage('Validate') {
steps {
sh 'node --version || true'
sh 'cat package.json | python3 -c "import json,sys; p=json.load(sys.stdin); print(\"Expo:\", p[\"dependencies\"].get(\"expo\",\"?\"))"'
sh "grep -E '\"expo\"' package.json | head -1 || true"
}
}
stage('Install') {