Skip to content

Add CI

Add CI #407

Workflow file for this run

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