github actions added

Signed-off-by: Benny Samir Hierl <bennysamir@posteo.de>
This commit is contained in:
Benny Samir Hierl 2022-01-29 11:27:34 +01:00
parent f096bc01ab
commit 05d1fa516d

17
.github/workflows/ci.yml vendored Normal file
View file

@ -0,0 +1,17 @@
name: ci
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up NodeJs
uses: actions/setup-node@v2
- name: Install dependencies
run: npm run ci
- name: Linter
run: npm run lint
- name: Typecheck
run: npm run typecheck