Add checks

Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
Alexander Borsuk 2023-07-04 13:28:54 +02:00 committed by Alexander Borsuk
parent dbd9221931
commit cc0020cf09

31
.github/workflows/check.yml vendored Normal file
View file

@ -0,0 +1,31 @@
name: Checks
on:
workflow_dispatch: {}
pull_request:
types:
- opened
- synchronize
jobs:
checks:
name: Checks
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Node
uses: actions/setup-node@v3
with:
node-version: 18
- name: Dependencies
run: npm ci
- name: Format
run: npm run format
- name: Test
run: npm run build