Skip to content
Dashboard

Deploying safely on Vercel without merge queues

Learn how to introduce custom checks to deploy your applications quickly and safely on Vercel.

Copy link to headingMerge queue drawbacks

Copy link to headingUsing Vercel to run custom checks before promoting deployments

Environments on Vercel

Learn more about creating and managing your deployments on Vercel.

Watch the video

Copy link to headingRemoving the merge queue

// Ensure that all checks pass
const token = process.env.VERCEL_API_TOKEN;
const scope = process.env.VERCEL_TEAM_ID;
await execaCommand(
`npx vercel --scope ${scope} --token ${token} promote ${deploymentId}`,
);

Copy link to headingMove faster and more safely with Vercel

Ready to deploy?