Skip to content

Commit 3baadb1

Browse files
eeshdarthvaderEesh Tyagi
andauthored
chore: Releases/v2 (#41)
* node version * node version * node version * node version * node version * diff check Co-authored-by: Eesh Tyagi <eeshtyagi@Eeshs-MacBook-Pro.local>
1 parent b3ae07c commit 3baadb1

File tree

6 files changed

+601
-463
lines changed

6 files changed

+601
-463
lines changed

.github/workflows/pr-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
- name: All tests
5252
run: yarn test
5353
- name: Add coverage comment
54-
uses: ScaCap/code-coverage-assistant@master
54+
uses: ScaCap/code-coverage-assistant@releases/v2
5555
with:
5656
github-token: ${{ secrets.GITHUB_TOKEN }}
5757
lcov-file: ./coverage/lcov.info

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ inputs:
2121
description: App name to display on comment
2222
required: false
2323
runs:
24-
using: node12
24+
using: node16
2525
main: dist/main.js

dist/main.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -22,32 +22,32 @@
2222
},
2323
"dependencies": {
2424
"@actions/core": "^1.10.0",
25-
"@actions/github": "^5.1.1",
25+
"@actions/github": "^4.0.0",
2626
"lcov-parse": "^1.0.0"
2727
},
2828
"devDependencies": {
29-
"@babel/core": "^7.20.2",
29+
"@babel/core": "^7.20.12",
3030
"@babel/eslint-parser": "7.19.1",
31-
"@babel/node": "^7.20.2",
31+
"@babel/node": "^7.20.7",
3232
"@babel/preset-env": "^7.20.2",
3333
"@rollup/plugin-commonjs": "^23.0.2",
3434
"@rollup/plugin-json": "^5.0.1",
3535
"@rollup/plugin-node-resolve": "^15.0.1",
36-
"babel-jest": "^29.2.2",
37-
"core-js": "3.26.0",
38-
"eslint": "^8.27.0",
36+
"babel-jest": "^29.3.1",
37+
"core-js": "3.27.2",
38+
"eslint": "^8.32.0",
3939
"eslint-config-airbnb": "19.0.4",
40-
"eslint-config-prettier": "^8.5.0",
40+
"eslint-config-prettier": "^8.6.0",
4141
"eslint-plugin-filenames": "1.3.2",
42-
"eslint-plugin-import": "2.26.0",
42+
"eslint-plugin-import": "2.27.5",
4343
"eslint-plugin-prettier": "4.2.1",
44-
"husky": ">=8.0.1",
45-
"jest": "^29.2.2",
46-
"lint-staged": "^13.0.3",
47-
"prettier": "^2.7.1",
48-
"regenerator-runtime": "^0.13.10",
49-
"rollup": "^3.2.5",
50-
"rollup-plugin-node-externals": "^5.0.2",
44+
"husky": ">=8.0.3",
45+
"jest": "^29.3.1",
46+
"lint-staged": "^13.1.0",
47+
"prettier": "^2.8.3",
48+
"regenerator-runtime": "^0.13.11",
49+
"rollup": "^3.10.0",
50+
"rollup-plugin-node-externals": "^5.1.0",
5151
"rollup-plugin-terser": "^7.0.2"
5252
},
5353
"babel": {

src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ const getLcovBaseFiles = (dir, filelist) => {
4040
fileArray = fs.statSync(path.join(dir, file)).isDirectory()
4141
? getLcovBaseFiles(path.join(dir, file), fileArray)
4242
: fileArray
43-
.filter((f) => f.path.includes("lcov-base.info"))
43+
.filter((f) => f.path.includes("lcov-base"))
4444
.concat({
4545
name: dir.split("/")[1],
4646
path: path.join(dir, file),

0 commit comments

Comments
 (0)