Skip to content

build(deps): bump node from 25.2.1-alpine to 25.3.0-alpine #128

build(deps): bump node from 25.2.1-alpine to 25.3.0-alpine

build(deps): bump node from 25.2.1-alpine to 25.3.0-alpine #128

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