Update to labeler v2 (#4)

* labeler v2

* update docs
This commit is contained in:
Shawn Napora
2019-08-08 13:07:40 -04:00
committed by Danny McCormick
parent ab3b5b5adc
commit 7d083c498f
21 changed files with 5592 additions and 1793 deletions

14
.github/main.workflow vendored
View File

@@ -1,14 +0,0 @@
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"
}