Skip to content

chore: Releases/v2 #41

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Jan 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/pr-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
- name: All tests
run: yarn test
- name: Add coverage comment
uses: ScaCap/code-coverage-assistant@master
uses: ScaCap/code-coverage-assistant@releases/v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
lcov-file: ./coverage/lcov.info
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ inputs:
description: App name to display on comment
required: false
runs:
using: node12
using: node16
main: dist/main.js
4 changes: 2 additions & 2 deletions dist/main.js

Large diffs are not rendered by default.

30 changes: 15 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,32 +22,32 @@
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@actions/github": "^4.0.0",
"lcov-parse": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/core": "^7.20.12",
"@babel/eslint-parser": "7.19.1",
"@babel/node": "^7.20.2",
"@babel/node": "^7.20.7",
"@babel/preset-env": "^7.20.2",
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-json": "^5.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"babel-jest": "^29.2.2",
"core-js": "3.26.0",
"eslint": "^8.27.0",
"babel-jest": "^29.3.1",
"core-js": "3.27.2",
"eslint": "^8.32.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-filenames": "1.3.2",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prettier": "4.2.1",
"husky": ">=8.0.1",
"jest": "^29.2.2",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"regenerator-runtime": "^0.13.10",
"rollup": "^3.2.5",
"rollup-plugin-node-externals": "^5.0.2",
"husky": ">=8.0.3",
"jest": "^29.3.1",
"lint-staged": "^13.1.0",
"prettier": "^2.8.3",
"regenerator-runtime": "^0.13.11",
"rollup": "^3.10.0",
"rollup-plugin-node-externals": "^5.1.0",
"rollup-plugin-terser": "^7.0.2"
},
"babel": {
Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const getLcovBaseFiles = (dir, filelist) => {
fileArray = fs.statSync(path.join(dir, file)).isDirectory()
? getLcovBaseFiles(path.join(dir, file), fileArray)
: fileArray
.filter((f) => f.path.includes("lcov-base.info"))
.filter((f) => f.path.includes("lcov-base"))
.concat({
name: dir.split("/")[1],
path: path.join(dir, file),
Expand Down
Loading