Files
mediabunny/.github/workflows/lint.yaml
T
2025-06-18 16:43:19 +02:00

28 lines
441 B
YAML

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