Skip to content

Structured output (#74) #51

Structured output (#74)

Structured output (#74) #51

Workflow file for this run

name: CI Main
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4.1.1
- run: corepack enable
- name: Set up Node.js
uses: actions/setup-node@v4.0.2
with:
node-version: '20'
- name: Install dependencies
run: pnpm install
- name: Run linter
run: pnpm lint
- name: Build the package
run: pnpm build