Skip to content

fix: add --if-present to check-types workspace script #2

fix: add --if-present to check-types workspace script

fix: add --if-present to check-types workspace script #2

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
check:
name: Lint & Types
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Install dependencies
run: npm ci
- name: Lint & format (Biome)
run: npm run check
- name: TypeScript
run: npm run check-types