Files
Clelia (Astra) Bertelli c44adc033b first commit
2025-08-08 11:30:46 +02:00

27 lines
443 B
YAML

name: Lint
on:
pull_request:
push:
branches: [main]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "24.4.0"
- name: Install dependencies
run: npm install
- name: Lint
run: npm run lint