chore(deps): update dependency oxlint-tsgolint to v0.16.0 - autoclosed #113
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: Build and Linter Test | |
| on: | |
| push: | |
| pull_request: | |
| permissions: | |
| contents: read | |
| id-token: write | |
| jobs: | |
| build-and-linter: | |
| name: Build and Linter test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 24 | |
| cache: pnpm | |
| - name: Install Deps | |
| run: pnpm install --frozen-lockfile | |
| - name: Build project | |
| env: | |
| BUNDLE_ANALYSIS: true | |
| run: pnpm run build | |
| - name: Linter test | |
| run: | | |
| pnpm run lint:check |