-
|
How to set up GitHub Actions CI/CD? |
Beta Was this translation helpful? Give feedback.
Answered by
maitamdev
Mar 5, 2026
Replies: 1 comment
-
|
Create .github/workflows/ci.yml with checkout, setup-node, npm ci, tsc, and build steps. Add deploy workflow for Vercel. Trigger on push to main. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
maitamdev
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Create .github/workflows/ci.yml with checkout, setup-node, npm ci, tsc, and build steps. Add deploy workflow for Vercel. Trigger on push to main.