wrangler-action/node_modules/breakword/.huskyrc.js

11 lines
153 B
JavaScript
Raw Normal View History

2023-08-07 22:11:15 +02:00
const tasks = arr => arr.join(' && ')
module.exports = {
'hooks': {
'pre-commit': tasks([
"npm run lint",
"npm run test"
])
}
}