Skip to content

Bump tsdown from 0.22.3 to 0.22.4 (#84) #213

Bump tsdown from 0.22.3 to 0.22.4 (#84)

Bump tsdown from 0.22.3 to 0.22.4 (#84) #213

Workflow file for this run

name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 22.x, 23.x, 24.x]
steps:
- uses: actions/checkout@v7
- name: Install pnpm
uses: pnpm/action-setup@v6
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
- name: Install packages
run: pnpm install
- name: Build package
run: pnpm run build
- name: Run tests
run: pnpm run test