lint init

This commit is contained in:
HaveAGitGat 2020-12-10 17:43:41 +01:00
parent a71f5e28ae
commit 7904647075
107 changed files with 1772 additions and 154624 deletions

25
.github/workflows/lint.yml vendored Normal file
View file

@ -0,0 +1,25 @@
name: Node.js CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x, 14.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm i
- run: npm run lint