4
0
Fork 0
mirror of https://github.com/Azure/setup-helm.git synced 2025-11-07 21:16:57 +00:00

Merge branch 'main' into VidyaReddy-Prettier

This commit is contained in:
Vidya Reddy 2022-06-27 13:55:30 -07:00 committed by GitHub
commit 4d60ed5564
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 10233 additions and 10549 deletions

View file

@ -1,13 +1,11 @@
# Setup Helm
Install a specific version of helm binary on the runner.
## Example
Acceptable values are latest or any semantic version string like v3.5.0 Use this action in workflow to define which version of helm will be used. v2 of this action only supports Helm3.
Acceptable values are latest or any semantic version string like v3.5.0 Use this action in workflow to define which version of helm will be used. v2 and v3 of this action only supports Helm3.
```yaml
- uses: azure/setup-helm@v1
- uses: azure/setup-helm@v3
with:
version: '<version>' # default is latest stable
id: install

959
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -17,17 +17,14 @@
"scripts": {
"build": "ncc build src/run.ts -o lib",
"test": "jest",
"test-coverage": "jest --coverage",
"format": "prettier --write .",
"format-check": "prettier --check ."
"test-coverage": "jest --coverage"
},
"devDependencies": {
"@types/jest": "^25.2.2",
"@types/jest": "^26.0.0",
"@types/node": "^12.0.10",
"@vercel/ncc": "^0.33.1",
"jest": "^26.0.1",
"prettier": "2.7.1",
"ts-jest": "^25.5.1",
"ts-jest": "^26.0.0",
"typescript": "^3.5.2"
}
}