A lightweight Next.js × Checkly CLI setup to get you started with unified testing, monitoring, and observability.
This repo showcases a simple Next.js app, hosted on Vercel, that uses Checkly to run checks before and after deployment in CI. It includes the following features:
/api/greetings
endpoint and displays it on the landing page.__checks__
directory verify if the page loads and if the API responds correctly.There are a couple ways to use this template:
Either way, get started by cloning your repo and installing dependencies:
git clone https://github.com/checkly/nextjs-checkly-starter-template.git # replace with your repo linkcd nextjs-checkly-starter-templatenpm i
Before running our checks, let's make sure Vercel Deployment Protection is configured to work with Checkly. If you chose to fork or use the template on GitHub, go ahead and deploy your repo to Vercel in the dashboard or with the CLI:
vercel
By default, Vercel Preview Deployments are protected and only accessible by logged-in members of your Vercel team. We want to be able to access these from our Checkly checks as well. We can bypass Vercel Deployment Protection by either:
If you choose to keep Deployment Protection on, ensure:
VERCEL_AUTOMATION_BYPASS_SECRET
in Project Settings > Deployment Protection. Our app will automatically use this for fetching from the /api/greetings
endpoint.Redeploy after applying any changes to your project settings in Vercel. Each deployment will alert you of anything it's missing on the landing page.
Use the Checkly CLI to login, or create an account if you don't already have one.
npx checkly login
We have a Vercel Production URL for our app, similar to https://nextjs-checkly-starter-template-checkly.vercel.app
. Let's add this to our Checkly environment variables:
npx checkly env add "PRODUCTION_URL" "<your Vercel Production URL>"
Now would be a good time to also add your Vercel Deployment Protection bypass secret, if you created one earlier:
npx checkly env add --secret "VERCEL_AUTOMATION_BYPASS_SECRET" "<secret>"
We're ready to go! Let's run our checks in the __checks__
directory in the Checkly cloud, and record them as a test session:
npx checkly test --record
Check it out in the Checkly test sessions dashboard.
You can also deploy the checks as monitors:
npx checkly deploy
Great! We're all set up with testing & monitoring our Production Deployments, which you can check out in the Checkly home dashboard. Let's do the same for our Vercel Preview environment.
You can run your Checkly checks right after any Vercel Preview Deployment, and then deploy your checks as monitors on Checkly. This is a powerful strategy to make sure you never ship breaking errors to Production, while at the same time surfacing any outages in your Production Deployments.
This example uses GitHub Actions — check out the workflow in .github/workflows/checkly.yml
— but you can use any other CI platform. We have example configs for Jenkins and GitLab CI in our docs.
CHECKLY_API_KEY
and CHECKLY_ACCOUNT_ID
in your GitHub Actions configuration.Now, on every deployment webhook that GitHub receives from Vercel, the GitHub Actions workflow will run the checks in the __checks__
directory.
That's it for this example! If you have questions or feedback, please drop us a note in our Slack community.
A lightweight Next.js × Checkly CLI setup to get you started with unified testing, monitoring, and observability.
This repo showcases a simple Next.js app, hosted on Vercel, that uses Checkly to run checks before and after deployment in CI. It includes the following features:
/api/greetings
endpoint and displays it on the landing page.__checks__
directory verify if the page loads and if the API responds correctly.There are a couple ways to use this template:
Either way, get started by cloning your repo and installing dependencies:
git clone https://github.com/checkly/nextjs-checkly-starter-template.git # replace with your repo linkcd nextjs-checkly-starter-templatenpm i
Before running our checks, let's make sure Vercel Deployment Protection is configured to work with Checkly. If you chose to fork or use the template on GitHub, go ahead and deploy your repo to Vercel in the dashboard or with the CLI:
vercel
By default, Vercel Preview Deployments are protected and only accessible by logged-in members of your Vercel team. We want to be able to access these from our Checkly checks as well. We can bypass Vercel Deployment Protection by either:
If you choose to keep Deployment Protection on, ensure:
VERCEL_AUTOMATION_BYPASS_SECRET
in Project Settings > Deployment Protection. Our app will automatically use this for fetching from the /api/greetings
endpoint.Redeploy after applying any changes to your project settings in Vercel. Each deployment will alert you of anything it's missing on the landing page.
Use the Checkly CLI to login, or create an account if you don't already have one.
npx checkly login
We have a Vercel Production URL for our app, similar to https://nextjs-checkly-starter-template-checkly.vercel.app
. Let's add this to our Checkly environment variables:
npx checkly env add "PRODUCTION_URL" "<your Vercel Production URL>"
Now would be a good time to also add your Vercel Deployment Protection bypass secret, if you created one earlier:
npx checkly env add --secret "VERCEL_AUTOMATION_BYPASS_SECRET" "<secret>"
We're ready to go! Let's run our checks in the __checks__
directory in the Checkly cloud, and record them as a test session:
npx checkly test --record
Check it out in the Checkly test sessions dashboard.
You can also deploy the checks as monitors:
npx checkly deploy
Great! We're all set up with testing & monitoring our Production Deployments, which you can check out in the Checkly home dashboard. Let's do the same for our Vercel Preview environment.
You can run your Checkly checks right after any Vercel Preview Deployment, and then deploy your checks as monitors on Checkly. This is a powerful strategy to make sure you never ship breaking errors to Production, while at the same time surfacing any outages in your Production Deployments.
This example uses GitHub Actions — check out the workflow in .github/workflows/checkly.yml
— but you can use any other CI platform. We have example configs for Jenkins and GitLab CI in our docs.
CHECKLY_API_KEY
and CHECKLY_ACCOUNT_ID
in your GitHub Actions configuration.Now, on every deployment webhook that GitHub receives from Vercel, the GitHub Actions workflow will run the checks in the __checks__
directory.
That's it for this example! If you have questions or feedback, please drop us a note in our Slack community.