diff --git a/action.yml b/action.yml index c0575e9..0a67144 100644 --- a/action.yml +++ b/action.yml @@ -1,10 +1,6 @@ -name: 'Your name here' -description: 'Provide a description here' -author: 'Your name or organization here' -inputs: - myInput: # change this - description: 'input description here' - default: 'default value if applicable' +name: 'Process Julia coverage files' +description: 'Convert Julia coverage files into a lcov file' +author: 'David Anthoff' runs: using: 'node12' main: 'dist/index.js' diff --git a/package-lock.json b/package-lock.json index d942ec4..60cbbf3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { - "name": "typescript-action", - "version": "0.0.0", + "name": "julia-processcoverage", + "version": "0.1.0", "lockfileVersion": 1, "requires": true, "dependencies": { @@ -9,6 +9,19 @@ "resolved": "https://registry.npmjs.org/@actions/core/-/core-1.2.0.tgz", "integrity": "sha512-ZKdyhlSlyz38S6YFfPnyNgCDZuAF2T0Qv5eHflNWytPS8Qjvz39bZFMry9Bb/dpSnqWcNeav5yM2CTYpJeY+Dw==" }, + "@actions/exec": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@actions/exec/-/exec-1.0.3.tgz", + "integrity": "sha512-TogJGnueOmM7ntCi0ASTUj4LapRRtDfj57Ja4IhPmg2fls28uVOPbAn8N+JifaOumN2UG3oEO/Ixek2A4NcYSA==", + "requires": { + "@actions/io": "^1.0.1" + } + }, + "@actions/io": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@actions/io/-/io-1.0.2.tgz", + "integrity": "sha512-J8KuFqVPr3p6U8W93DOXlXW6zFvrQAJANdS+vw0YhusLIq+bszW8zmK2Fh1C2kDPX8FMvwIl1OUcFgvJoXLbAg==" + }, "@babel/code-frame": { "version": "7.5.5", "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.5.5.tgz", diff --git a/package.json b/package.json index 44a03cd..c9d1ebb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { - "name": "typescript-action", - "version": "0.0.0", + "name": "julia-processcoverage", + "version": "0.1.0", "private": true, "description": "TypeScript template action", "main": "lib/main.js", @@ -15,17 +15,18 @@ }, "repository": { "type": "git", - "url": "git+https://github.com/actions/typescript-action.git" + "url": "git+https://github.com/julia-actions/julia-processcoverage.git" }, "keywords": [ "actions", "node", "setup" ], - "author": "YourNameOrOrganization", + "author": "David Anthoff", "license": "MIT", "dependencies": { - "@actions/core": "^1.2.0" + "@actions/core": "^1.2.0", + "@actions/exec": "^1.0.3" }, "devDependencies": { "@types/jest": "^24.0.23",