mirror of
https://github.com/SrIzan10/next-auth.git
synced 2026-05-01 10:55:20 +00:00
12 lines
299 B
TypeScript
12 lines
299 B
TypeScript
export async function verify() {
|
|
if (!process.env.NPM_TOKEN_PKG) {
|
|
throw new Error("NPM_TOKEN_PKG is not set")
|
|
}
|
|
if (!process.env.NPM_TOKEN_ORG) {
|
|
throw new Error("NPM_TOKEN_ORG is not set")
|
|
}
|
|
if (!process.env.RELEASE_TOKEN) {
|
|
throw new Error("RELEASE_TOKEN is not set")
|
|
}
|
|
}
|