Skip to content

type: fix type error #49

type: fix type error

type: fix type error #49

Workflow file for this run

name: Unit Test
on:
pull_request:
branches: [main]
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
node-version: [18, 20]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: pnpm/action-setup@v2
name: Install pnpm
with:
version: latest
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
- name: Install
run: pnpm i
- name: Build
run: pnpm build
- name: Lint
run: pnpm lint:test
- name: Build playground
run: pnpm dev:build