Skip to content

build(deps): bump the all-minor-patch-updates group with 5 updates #109

build(deps): bump the all-minor-patch-updates group with 5 updates

build(deps): bump the all-minor-patch-updates group with 5 updates #109

Workflow file for this run

name: Build Check
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
lint-and-ts-check:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Enable Corepack
run: corepack enable
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: '24' # Adjust as needed
cache: 'yarn'
- name: Install dependencies
run: yarn install --immutable
- name: TypeScript check
run: yarn tsc --noEmit
- name: Run tests
run: yarn run test:run