Skip to content

removed all old code #17

removed all old code

removed all old code #17

Workflow file for this run

name: Run Tests and Lint
on:
push
permissions:
contents: write
jobs:
lint:
concurrency: ci-${{ github.ref }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: npm ci --legacy-peer-deps
- name: ESLint
run: npm run lint
- name: Find circular dependencies
run: npm run lint:deps
- name: Check Svelte files
run: npm run check