This repository was archived by the owner on Jun 26, 2026. It is now read-only.
feat(vscode): removed TL-B support #1257
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: Linter checks | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| push: | |
| branches: | |
| - master | |
| env: | |
| HUSKY: 0 | |
| jobs: | |
| linter: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Fetch Sources | |
| uses: actions/checkout@v4 | |
| - name: Enable Corepack | |
| run: corepack enable | |
| - name: Setup Node.js 22.x | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22.x | |
| cache: "yarn" | |
| - name: Install dependencies | |
| run: yarn install --immutable --check-cache --check-resolutions | |
| # disable for now due build error with deduped packages | |
| # - name: Check yarn dedupe | |
| # run: yarn dedupe --check | |
| - name: Run prettier | |
| run: yarn run fmt:check | |
| - name: Run eslint | |
| run: yarn run lint |