Skip to content

Commit

Permalink
Remove husky tool + fix lint error (#394)
Browse files Browse the repository at this point in the history
* remove husky

* fix tests
  • Loading branch information
austinvalle committed Jan 31, 2024
1 parent e12a014 commit 2417443
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 26 deletions.
2 changes: 1 addition & 1 deletion dist/index1.js
Original file line number Diff line number Diff line change
Expand Up @@ -27222,7 +27222,7 @@ async function checkTerraform () {
const options = {
listeners,
ignoreReturnCode: true,
silent: true, // avoid printing command in stdout: https://github.com/actions/toolkit/issues/649
silent: true // avoid printing command in stdout: https://github.com/actions/toolkit/issues/649
};
const exitCode = await exec(pathToCLI, args, options);

Expand Down
22 changes: 0 additions & 22 deletions package-lock.json

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

2 changes: 0 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
"test": "semistandard --env jest && jest --coverage",
"lint": "semistandard --env jest --fix",
"build": "ncc build wrapper/terraform.js --out wrapper/dist && ncc build index.js --out dist",
"prepare": "husky install",
"format-check": "echo \"unimplemented for actions/reusable-workflows basic-validation\""
},
"keywords": [],
Expand All @@ -28,7 +27,6 @@
},
"devDependencies": {
"@vercel/ncc": "^0.38.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"nock": "^13.5.1",
"semistandard": "^17.0.0"
Expand Down
2 changes: 1 addition & 1 deletion wrapper/terraform.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ async function checkTerraform () {
const options = {
listeners,
ignoreReturnCode: true,
silent: true, // avoid printing command in stdout: https://github.com/actions/toolkit/issues/649
silent: true // avoid printing command in stdout: https://github.com/actions/toolkit/issues/649
};
const exitCode = await exec(pathToCLI, args, options);

Expand Down

0 comments on commit 2417443

Please sign in to comment.