fix: when the cursor is on an object lookup expression, return its ty… #200
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 and formatter check | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| env: | |
| HUSKY: 0 | |
| permissions: {} | |
| jobs: | |
| oxlint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: pnpm/action-setup@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: lts/* | |
| cache: pnpm | |
| - run: pnpm install --frozen-lockfile | |
| - run: pnpm run lint --format=github | |
| - run: pnpm run fmt:check |