chore(deps): bump @tanstack/solid-router-ssr-query from 1.143.4 to 1.144.0 #206
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: Check ESLint | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - "src/**/*.{js,jsx,ts,tsx}" | |
| - "eslint.config.{js,mjs}" | |
| - "tsconfig.json" | |
| - "package.json" | |
| - "bun.lock" | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| linting: | |
| permissions: | |
| contents: read | |
| name: Lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup Bun | |
| uses: oven-sh/setup-bun@v2 | |
| - name: Run install | |
| run: bun install --frozen-lockfile | |
| - name: Lint check | |
| run: bun run lint |