Initial commit

This commit is contained in:
Jonathan Clem
2019-03-29 15:21:48 -07:00
commit ab3b5b5adc
11 changed files with 2289 additions and 0 deletions

14
.github/main.workflow vendored Normal file
View File

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