Create lint.yml

This commit is contained in:
Aylur
2023-08-20 17:58:55 +02:00
committed by GitHub
parent 71ba20bbac
commit 5c8b350373
+16
View File
@@ -0,0 +1,16 @@
name: Lint
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: lint and typecheck
uses: actions/setup-node@v3
with:
node-version: latest
cache: 'npm'
- run: npm ci
- run: npm test