Skip to content

prof of concept - otclient #160

prof of concept - otclient

prof of concept - otclient #160

Workflow file for this run

name: Check
on:
push:
branches: [main]
pull_request:
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
check:
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: Check
run: pnpm check