This commit is contained in:
Vanilagy
2025-06-18 16:43:19 +02:00
parent eef573a972
commit 7203ee776c
2 changed files with 28 additions and 1 deletions
+27
View File
@@ -0,0 +1,27 @@
name: Lint
on:
push:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run TypeScript
run: npm run check
- name: Run ESLint
run: npm run lint