Skip to content

test: fix

test: fix #14

Workflow file for this run

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