Skip to content

chore: tweak readme (#7) #42

chore: tweak readme (#7)

chore: tweak readme (#7) #42

Workflow file for this run

on:
pull_request:
types: [opened, synchronize, reopened]
push:
branches:
- 'main'
name: CI Test, Typecheck
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-test
cancel-in-progress: true
env:
CI: true
NODE_OPTIONS: --max-old-space-size=8192
HUSKY: 0
jobs:
test:
name: Test & Typecheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install pnpm
run: npm install -g pnpm@9
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Run typecheck
run: pnpm run typecheck
- name: Run test
run: pnpm run test