Compare commits

..

1 Commits

Author SHA1 Message Date
Thomas Hu
66ddb8cd18 Test different on 2020-08-07 11:25:40 -04:00
5 changed files with 10 additions and 11 deletions

View File

@@ -1,5 +1,8 @@
name: Workflow for Codecov Action
on: [push, pull_request]
on:
push:
branches: master
pull_request:
jobs:
run:
runs-on: ubuntu-latest

View File

@@ -1,6 +1,6 @@
name: 'Codecov'
description: 'GitHub Action that uploads coverage reports for your repository to codecov.io'
author: 'Ibrahim Ali <@ibrahim0814> & Thomas Hu <@thomasrockhu> | Codecov'
author: 'Ibrahim Ali <@ibrahim0814> | Codecov'
inputs:
name:
description: 'User defined upload name. Visible in Codecov UI'

6
dist/index.js vendored
View File

@@ -2233,10 +2233,8 @@ try {
}
request({
json: false,
maxAttempts: 10,
timeout: 3000,
url: "https://codecov.io/bash"
url: "https://codecov.io/bash",
json: false
}, (error, response, body) => {
try {
if (error && fail_ci) {

View File

@@ -29,10 +29,8 @@ try {
}
request({
json: false,
maxAttempts: 10,
timeout: 3000,
url: "https://codecov.io/bash"
url: "https://codecov.io/bash",
json: false
}, (error, response, body) => {
try {
if (error && fail_ci) {

View File

@@ -1,6 +1,6 @@
{
"name": "codecov-action",
"version": "1.0.13",
"version": "1.0.12",
"description": "Upload coverage reports to Codecov from GitHub Actions",
"main": "index.js",
"scripts": {