Initial commit

This commit is contained in:
Jonathan Clem
2019-03-21 18:15:19 -04:00
commit 4f0213ed10
11 changed files with 2290 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"
}