Skip to content

fix: adjust the type of the "valuesOf" parameter #52

fix: adjust the type of the "valuesOf" parameter

fix: adjust the type of the "valuesOf" parameter #52

Workflow file for this run

name: Standard
on: [pull_request, push, workflow_dispatch]
jobs:
test:
name: Test
strategy:
matrix:
node-version: [18, 20, 22]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Check types
run: npm run type-check
- name: Check format
run: npm run format-check
- name: Check lint
run: npm run lint-check
- name: Test
run: npm run test