removed all old code #17
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |