[web] Present a numeric keypad for integer input fields #93
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 Lint | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- 'web-src/**' | |
pull_request: | |
branches: | |
- master | |
paths: | |
- 'web-src/**' | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
working-directory: web-src | |
run: npm install | |
- name: Run linter | |
working-directory: web-src | |
run: npm run lint --no-fix |