Update README.md #483
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: Web UI Checks | |
on: [push, pull_request] | |
jobs: | |
webui_checks: | |
name: Code Format, Lint, Typecheck, Test, and Build | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./app/web_ui | |
steps: | |
- uses: actions/checkout@v4 | |
- name: NPM install | |
run: npm install . | |
- name: Check Code Format | |
run: npm run format_check | |
- name: Linting | |
run: npm run lint | |
- name: Typechecking | |
run: npm run check | |
- name: Tests | |
run: npm run test_run | |
- name: SvelteKit Build | |
run: npm run build |