This commit is contained in:
Shawn Napora
2019-08-08 11:14:29 -04:00
parent 660b172085
commit 26d9864772
2 changed files with 1 additions and 15 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"
}

View File

@@ -26,7 +26,7 @@ jobs:
triage:
runs-on: ubuntu-latest
steps:
- uses: bbq-beets/labeler@labeler
- uses: actions/labeler@v2
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
```