Skip to content

Commit

Permalink
run to index (#67)
Browse files Browse the repository at this point in the history
* run to index

* action.yaml route

* move to dev dep
  • Loading branch information
davidgamero committed Feb 9, 2022
1 parent e00756a commit fa870ea
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 16 deletions.
16 changes: 8 additions & 8 deletions action.yml
@@ -1,15 +1,15 @@
name: 'Helm tool installer'
description: 'Install a specific version of helm binary. Acceptable values are latest or any semantic version string like 1.15.0'
name: "Helm tool installer"
description: "Install a specific version of helm binary. Acceptable values are latest or any semantic version string like 1.15.0"
inputs:
version:
description: 'Version of helm'
description: "Version of helm"
required: true
default: 'latest'
default: "latest"
outputs:
helm-path:
description: 'Path to the cached helm binary'
description: "Path to the cached helm binary"
branding:
color: 'blue'
color: "blue"
runs:
using: 'node12'
main: 'lib/run.js'
using: "node12"
main: "lib/index.js"
22 changes: 20 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 7 additions & 6 deletions package.json
Expand Up @@ -13,17 +13,18 @@
"@octokit/graphql": "^4.6.1",
"semver": "^6.1.0"
},
"main": "lib/run.js",
"main": "lib/index.js",
"scripts": {
"build": "tsc --outDir ./lib --rootDir ./src",
"build": "ncc build src/run.ts -o lib",
"test": "jest",
"test-coverage": "jest --coverage"
},
"devDependencies": {
"@types/jest": "^25.2.2",
"@types/node": "^12.0.10",
"typescript": "^3.5.2",
"@vercel/ncc": "^0.33.1",
"jest": "^26.0.1",
"@types/jest": "^25.2.2",
"ts-jest": "^25.5.1"
"ts-jest": "^25.5.1",
"typescript": "^3.5.2"
}
}
}

0 comments on commit fa870ea

Please sign in to comment.