chore: fix spelling error in approval.svelte (#13) #3
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: Quality Check Dashboard | |
on: | |
workflow_dispatch: | |
pull_request: | |
paths: | |
- "dashboard/**" | |
push: | |
branches: | |
- main | |
paths: | |
- "dashboard/**" | |
jobs: | |
ci: | |
name: Check Code Quality | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Install Dependencies | |
run: | | |
cd dashboard | |
npm install | |
- name: Run Linting & Formatting Check | |
run: | | |
cd dashboard | |
npm run lint |