Skip to content

chore: modernize package.json and TypeScript configuration #193

chore: modernize package.json and TypeScript configuration

chore: modernize package.json and TypeScript configuration #193

Workflow file for this run

name: CI
on:
- pull_request
- push
jobs:
ci:
name: Continuous integration
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
run_install: false
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 22
cache: "pnpm"
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build
run: pnpm build
- name: Lint
run: pnpm lint
- name: Run tests
run: pnpm test