Skip to content

Commit

Permalink
fix: set requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosdevpereira committed Sep 26, 2022
1 parent 2e32db4 commit da5cb8a
Showing 1 changed file with 15 additions and 6 deletions.
21 changes: 15 additions & 6 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,21 @@ const COVERAGE_OUTPUT_FOLDER = "./coverage";
* the Github Action so that we can later use them
**/
const input = {
framework: core.getInput("framework"),
githubToken: core.getInput("githubToken"),
cloudflareProjectName: core.getInput("cloudflareProjectName"),
cloudflareApiToken: core.getInput("cloudflareApiToken"),
cloudflareAccountId: core.getInput("cloudflareAccountId"),
baseCloudflareDeploymentUrl: core.getInput("baseCloudflareDeploymentUrl"),
framework: core.getInput("framework", { required: false }),
githubToken: core.getInput("githubToken", { required: true }),
cloudflareProjectName: core.getInput("cloudflareProjectName", {
required: true,
}),
cloudflareApiToken: core.getInput("cloudflareApiToken", {
required: true,
}),
cloudflareAccountId: core.getInput("cloudflareAccountId", {
required: true,
}),
baseCloudflareDeploymentUrl: core.getInput(
"baseCloudflareDeploymentUrl",
{ required: false }
),
};

/**
Expand Down

0 comments on commit da5cb8a

Please sign in to comment.