Skip to content

docs: Installations-Anleitung hinzugefügt (#275) #601

docs: Installations-Anleitung hinzugefügt (#275)

docs: Installations-Anleitung hinzugefügt (#275) #601

Workflow file for this run

on:
push:
pull_request:
name: Check and Lint Code
jobs:
eslint:
name: Svelte Check & ESLint
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: npm ci
- name: Svelte Check
run: npm run check
- name: Run ESLint
run: npm run lint