mirror of
https://github.com/codecov/codecov-action.git
synced 2025-12-23 20:27:02 +08:00
const to let
This commit is contained in:
2
dist/index.js
vendored
2
dist/index.js
vendored
@@ -272,7 +272,7 @@ try {
|
|||||||
const flags = core.getInput("flags");
|
const flags = core.getInput("flags");
|
||||||
const file = core.getInput("file");
|
const file = core.getInput("file");
|
||||||
const yml = core.getInput("yml");
|
const yml = core.getInput("yml");
|
||||||
const fail_ci = core.getInput("fail_ci_if_error");
|
let fail_ci = core.getInput("fail_ci_if_error");
|
||||||
fail_ci = fail_ci.toLowerCase();
|
fail_ci = fail_ci.toLowerCase();
|
||||||
|
|
||||||
request("https://codecov.io/bash", (error, response, body) => {
|
request("https://codecov.io/bash", (error, response, body) => {
|
||||||
|
|||||||
2
index.js
2
index.js
@@ -9,7 +9,7 @@ try {
|
|||||||
const flags = core.getInput("flags");
|
const flags = core.getInput("flags");
|
||||||
const file = core.getInput("file");
|
const file = core.getInput("file");
|
||||||
const yml = core.getInput("yml");
|
const yml = core.getInput("yml");
|
||||||
const fail_ci = core.getInput("fail_ci_if_error");
|
let fail_ci = core.getInput("fail_ci_if_error");
|
||||||
fail_ci = fail_ci.toLowerCase();
|
fail_ci = fail_ci.toLowerCase();
|
||||||
|
|
||||||
request("https://codecov.io/bash", (error, response, body) => {
|
request("https://codecov.io/bash", (error, response, body) => {
|
||||||
|
|||||||
Reference in New Issue
Block a user