test/user-journey #3

Merged
zhangxiang merged 142 commits from test/user-journey into dev 2026-04-12 13:17:03 +08:00
Showing only changes of commit 622872ff04 - Show all commits
Vendored
+8 -44
View File
@@ -7,8 +7,6 @@ pipeline {
NODE_ENV = 'production'
NEXT_TELEMETRY_DISABLED = '1'
npm_config_registry = 'https://registry.npmmirror.com'
PROJECT_DIR = '/home/novalon/docker-app/novalon-website'
DEPLOY_DIR = '/home/novalon/docker-app/novalon-website'
}
stages {
@@ -28,7 +26,6 @@ pipeline {
steps {
echo '=== Installing dependencies ==='
sh '''
cd ${PROJECT_DIR}
npm ci --cache /tmp/npm-cache --prefer-offline --legacy-peer-deps || npm ci --cache /tmp/npm-cache --legacy-peer-deps
'''
}
@@ -39,30 +36,21 @@ pipeline {
stage('Lint') {
steps {
echo '=== Running linting ==='
sh '''
cd ${PROJECT_DIR}
npm run lint
'''
sh 'npm run lint'
}
}
stage('Type Check') {
steps {
echo '=== Running type check ==='
sh '''
cd ${PROJECT_DIR}
npm run type-check
'''
sh 'npm run type-check'
}
}
stage('Security Scan') {
steps {
echo '=== Running security scan ==='
sh '''
cd ${PROJECT_DIR}
npm audit --audit-level=high --omit=dev || true
'''
sh 'npm audit --audit-level=high --omit=dev || true'
}
}
}
@@ -75,7 +63,6 @@ pipeline {
steps {
echo '=== Running unit tests ==='
sh '''
cd ${PROJECT_DIR}
npm run test:unit -- --coverage --coverageReporters=text-summary --forceExit || true
echo "Unit tests completed."
'''
@@ -89,7 +76,6 @@ pipeline {
steps {
echo '=== Running E2E tests ==='
sh '''
cd ${PROJECT_DIR}
npm run build
npx playwright install chromium --with-deps || true
npm run test:e2e || true
@@ -112,44 +98,22 @@ pipeline {
echo "IP: $(hostname -i)"
echo ""
cd ${PROJECT_DIR}
echo "Building production artifacts..."
npm run build
echo "Build completed"
ls -la dist/
ls -la dist/ || echo "No dist directory found"
echo "Deploying to production..."
chmod +x scripts/sync-to-production.sh
./scripts/sync-to-production.sh
echo "Restarting production services..."
cd ${DEPLOY_DIR}
test -f docker-compose.server.yml && mv docker-compose.server.yml docker-compose.yml
chmod +x scripts/deploy-production.sh
./scripts/deploy-production.sh
if [ -f scripts/sync-to-production.sh ]; then
chmod +x scripts/sync-to-production.sh
./scripts/sync-to-production.sh || echo "sync-to-production.sh not found or failed"
fi
echo "Production deployment completed"
'''
}
}
stage('Archive to Main') {
when {
anyOf {
branch 'release'
branch pattern: 'release/**', comparator: 'GLOB'
}
}
steps {
echo '=== Archiving to main branch ==='
sh '''
cd ${PROJECT_DIR}
chmod +x scripts/archive-to-main.sh
./scripts/archive-to-main.sh
'''
}
}
}
post {