mirror of
https://github.com/actions/labeler.git
synced 2025-12-12 04:27:34 +00:00
14 lines
365 B
HCL
14 lines
365 B
HCL
workflow "Lint JavaScript" {
|
|
on = "push"
|
|
resolves = ["Lint", "Formatting"]
|
|
}
|
|
|
|
action "Lint" {
|
|
uses = "actions/npm@v2.0.0"
|
|
runs = "npx eslint --no-eslintrc --env es6 --parser-options ecmaVersion:2018 entrypoint.js"
|
|
}
|
|
|
|
action "Formatting" {
|
|
uses = "actions/npm@v2.0.0"
|
|
runs = "npx prettier -c --no-semi --no-bracket-spacing --single-quote entrypoint.js"
|
|
} |