Skip to content

chore: object-diff visual demo #180

chore: object-diff visual demo

chore: object-diff visual demo #180

Workflow file for this run

name: CI Pipeline
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v7
- name: Setup Node.js
uses: actions/setup-node@v7
with:
node-version: "24"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Run typescript
run: npm run tsc
- name: Run linter
run: npm run lint
- name: Check formatting
run: npm run fmt:check
- name: Run tests
run: npm run test
- name: Build the project
run: npm run build