Skip to content

fix: implement the right package manager in actions #11

fix: implement the right package manager in actions

fix: implement the right package manager in actions #11

Workflow file for this run

name: Check PR
on: [pull_request]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
check-code:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: "Setup yarn"
uses: actions/setup-node@v4
with:
node-version: "24"
cache: "pnpm"
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Biome check
run: pnpm lint
- name: Generate Next types
run: pnpm next typegen
- name: Typescript check
run: pnpm type-check