mirror of
https://github.com/codecov/codecov-action.git
synced 2025-12-23 20:27:02 +08:00
fix: small edits
This commit is contained in:
@@ -1,8 +1,14 @@
|
|||||||
## 2.2.0
|
## 2.2.0
|
||||||
### Features
|
### Features
|
||||||
- # Incorporate `gcov` arguments for the Codecov uploader
|
- #688 Incorporate `gcov` arguments for the Codecov uploader
|
||||||
|
|
||||||
### Dependencies
|
### Dependencies
|
||||||
|
- #548 build(deps-dev): bump jest-junit from 12.2.0 to 13.0.0
|
||||||
|
- #603 [Snyk] Upgrade @actions/core from 1.5.0 to 1.6.0
|
||||||
|
- #628 build(deps): bump node-fetch from 2.6.1 to 3.1.1
|
||||||
|
- #634 build(deps): bump node-fetch from 3.1.1 to 3.2.0
|
||||||
|
- #636 build(deps): bump openpgp from 5.0.1 to 5.1.0
|
||||||
|
- #653 build(deps-dev): bump @types/node from 16.11.21 to 17.0.18
|
||||||
|
|
||||||
## 2.1.0
|
## 2.1.0
|
||||||
### Features
|
### Features
|
||||||
|
|||||||
6
dist/index.js
vendored
6
dist/index.js
vendored
@@ -12981,13 +12981,13 @@ const buildExec = () => {
|
|||||||
execArgs.push('-g');
|
execArgs.push('-g');
|
||||||
}
|
}
|
||||||
if (gcovArgs) {
|
if (gcovArgs) {
|
||||||
execArgs.push('-ga', `${gcovArgs}`);
|
execArgs.push('--ga', `${gcovArgs}`);
|
||||||
}
|
}
|
||||||
if (gcovIgnore) {
|
if (gcovIgnore) {
|
||||||
execArgs.push('-gi', `${gcovIgnore}`);
|
execArgs.push('--gi', `${gcovIgnore}`);
|
||||||
}
|
}
|
||||||
if (gcovInclude) {
|
if (gcovInclude) {
|
||||||
execArgs.push('-gI', `${gcovInclude}`);
|
execArgs.push('--gI', `${gcovInclude}`);
|
||||||
}
|
}
|
||||||
if (overrideBranch) {
|
if (overrideBranch) {
|
||||||
execArgs.push('-B', `${overrideBranch}`);
|
execArgs.push('-B', `${overrideBranch}`);
|
||||||
|
|||||||
2
dist/index.js.map
vendored
2
dist/index.js.map
vendored
File diff suppressed because one or more lines are too long
@@ -85,11 +85,11 @@ test('all arguments', () => {
|
|||||||
'-F',
|
'-F',
|
||||||
'test2',
|
'test2',
|
||||||
'-g',
|
'-g',
|
||||||
'-ga',
|
'--ga',
|
||||||
'-v',
|
'-v',
|
||||||
'-gi',
|
'--gi',
|
||||||
'*.fake',
|
'*.fake',
|
||||||
'-gI',
|
'--gI',
|
||||||
'real_file',
|
'real_file',
|
||||||
'-B',
|
'-B',
|
||||||
'thomasrockhu/test',
|
'thomasrockhu/test',
|
||||||
|
|||||||
@@ -114,13 +114,13 @@ const buildExec = () => {
|
|||||||
execArgs.push('-g');
|
execArgs.push('-g');
|
||||||
}
|
}
|
||||||
if (gcovArgs) {
|
if (gcovArgs) {
|
||||||
execArgs.push('-ga', `${gcovArgs}`);
|
execArgs.push('--ga', `${gcovArgs}`);
|
||||||
}
|
}
|
||||||
if (gcovIgnore) {
|
if (gcovIgnore) {
|
||||||
execArgs.push('-gi', `${gcovIgnore}`);
|
execArgs.push('--gi', `${gcovIgnore}`);
|
||||||
}
|
}
|
||||||
if (gcovInclude) {
|
if (gcovInclude) {
|
||||||
execArgs.push('-gI', `${gcovInclude}`);
|
execArgs.push('--gI', `${gcovInclude}`);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (overrideBranch) {
|
if (overrideBranch) {
|
||||||
|
|||||||
Reference in New Issue
Block a user