Skip to content

build(deps): bump minimatch from 3.1.2 to 3.1.4 #162

build(deps): bump minimatch from 3.1.2 to 3.1.4

build(deps): bump minimatch from 3.1.2 to 3.1.4 #162

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