Skip to content

feat(*): finishing touches for V0 #2

feat(*): finishing touches for V0

feat(*): finishing touches for V0 #2

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup PNPM
uses: pnpm/action-setup@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: "pnpm"
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Typechecking
run: pnpm run check
- name: Running tests
run: pnpm run test