Skip to content

Simplify web UI to match Agentation UX, add optimizations, clean up R… #10

Simplify web UI to match Agentation UX, add optimizations, clean up R…

Simplify web UI to match Agentation UX, add optimizations, clean up R… #10

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20, 22]
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Lint
run: pnpm check
- name: Build
run: pnpm build
- name: Test
run: pnpm test