wrangler-action/node_modules/smartwrap/.huskyrc.js
2023-08-07 15:11:15 -05:00

10 lines
153 B
JavaScript

const tasks = arr => arr.join(' && ')
module.exports = {
'hooks': {
'pre-commit': tasks([
"npm run lint",
"npm run test"
])
}
}