Skip to content

chore: cleanup

chore: cleanup #191

Workflow file for this run

name: Test
on:
push:
jobs:
short:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 20
name: Node.js ${{ matrix.node-version }} Quick
steps:
- name: Checkout the repository
uses: actions/checkout@v4
- name: Install Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install pnpm
uses: pnpm/action-setup@v2
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run unit tests
run: pnpm test
env:
FORCE_COLOR: 2