mirror of
https://github.com/cloudflare/wrangler-action.git
synced 2024-11-22 10:03:24 +01:00
10 lines
153 B
JavaScript
10 lines
153 B
JavaScript
const tasks = arr => arr.join(' && ')
|
|
|
|
module.exports = {
|
|
'hooks': {
|
|
'pre-commit': tasks([
|
|
"npm run lint",
|
|
"npm run test"
|
|
])
|
|
}
|
|
}
|