More TS conversion and react-resizable upgrade #481
Workflow file for this run
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: Lint check | |
| on: | |
| push: | |
| branches: ['main', 'dev'] | |
| pull_request: | |
| branches: ['main', 'dev'] | |
| jobs: | |
| eslint: | |
| name: Run lint checks | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Caching | |
| uses: actions/setup-node@v6 | |
| - name: Install | |
| run: npm install | |
| - name: Lint | |
| run: npm run lint:check |