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.

Link to headingMerge queue drawbacks

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

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}`,
);

Link to headingMove faster and more safely with Vercel