Skip to content

chore: relax node engine range and bump version to 2.9.3 #396

chore: relax node engine range and bump version to 2.9.3

chore: relax node engine range and bump version to 2.9.3 #396

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
main:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: ['18', '20', '22', '24']
steps:
- uses: actions/checkout@v4
- name: Setup Node and pnpm
uses: silverhand-io/actions-node-pnpm-run-steps@v5
with:
pnpm-version: '10'
node-version: ${{ matrix.node-version }}
- name: Lint
run: pnpm lint
- name: Test
run: pnpm test
- name: Build
run: pnpm build
- name: Test CommonJS
run: node test.cjs