Skip to content

Setup/ci

Setup/ci #1

Workflow file for this run

name: CI
on:
pull_request:
branches:
- '**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'pnpm'
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 10
- name: Install dependencies
run: pnpm install
- name: Run format check
run: pnpm run format:check
- name: Run lint
run: pnpm run lint
- name: Run tests
run: pnpm run test