This repository was archived by the owner on Feb 27, 2026. It is now read-only.
prof of concept - otclient #159
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: Types | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| concurrency: ${{ github.workflow }}-${{ github.ref }} | |
| jobs: | |
| types: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| env: | |
| HUSKY: 0 # desativa hooks no CI | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| lfs: true | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| - name: Enable Corepack (pnpm) | |
| run: corepack enable | |
| - name: Setup Bun | |
| uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: latest | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Types | |
| run: pnpm types |