Add item tooltips to check locations (#47) #1
This file contains hidden or 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: CI | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - 'master' | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout commit | |
| uses: actions/checkout@v4 | |
| - name: Install Node | |
| uses: actions/[email protected] | |
| with: | |
| node-version: '20.x' | |
| - name: Install npm packages | |
| run: npm ci | |
| - name: Build UI | |
| run: npm run build | |
| - name: Run tests | |
| run: npm test | |
| - name: Run eslint | |
| run: npm run lint |