Skip to content

fix: use import default esm helper for esm path imports #2127

fix: use import default esm helper for esm path imports

fix: use import default esm helper for esm path imports #2127

Workflow file for this run

name: Test
on:
push:
branches: [main]
paths-ignore:
- 'website/**'
pull_request:
paths-ignore:
- 'website/**'
workflow_dispatch:
jobs:
verify:
name: Verify [Node ${{ matrix.node_version }}]
runs-on: ${{ matrix.os }}
strategy:
matrix:
node_version: ['18', '20', '22', '24']
os: [ubuntu-latest]
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # tag=v4.2.2
- uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # tag=v4.1.0
- name: Use Node.js ${{ matrix.node_version }}
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # tag=v4.4.0
with:
node-version: ${{ matrix.node_version }}
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Lint
run: pnpm lint:ci
- name: Type check
run: pnpm typecheck
- name: Run tests
run: pnpm test