This commit is contained in:
xn0px90 2023-02-10 12:47:50 -07:00
commit ed5ede6e32
3 changed files with 25 additions and 0 deletions

5
.github/workflows/.travis.yml vendored Normal file
View File

@ -0,0 +1,5 @@
language: node_js
node_js:
- 'node'
# git:
# depth: false

12
.github/workflows/main.yml vendored Normal file
View File

@ -0,0 +1,12 @@
name: CI
on:
pull_request:
branches: [main]
jobs:
Awesome_Lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- run: npm awesome-lint

8
.github/workflows/package.json vendored Normal file
View File

@ -0,0 +1,8 @@
{
"scripts": {
"test": "awesome-lint"
},
"devDependencies": {
"awesome-lint": "*"
}
}