Deployment workflow for password generator web applications. Use when deploying, configuring CI/CD, or preparing the application for production.
Use this skill when deploying the password generator application, setting up CI/CD pipelines, or preparing for production release.
Build Verification
npm run build
npm test
npm run lint
Security Audit
npm audit --audit-level=moderate
Performance Check
Password generators are client-side only - use static hosting:
npm run build
npx gh-pages -d dist
Connect repository and configure:
npm run builddistSee deploy script for automated verification.