Skip to content

Bump @mdx-js/esbuild from 3.1.0 to 3.1.1 (#64) #249

Bump @mdx-js/esbuild from 3.1.0 to 3.1.1 (#64)

Bump @mdx-js/esbuild from 3.1.0 to 3.1.1 (#64) #249

Workflow file for this run

name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x, 24.x]
steps:
- uses: actions/checkout@v6
- name: Install pnpm
uses: pnpm/action-setup@v5
- 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: Lint
run: |
pnpm format:check
- name: Build packages
run: |
pnpm build
- name: Run tests
run: |
pnpm test