Skip to content

chore: update rspress to 1.20.1 (#614) #733

chore: update rspress to 1.20.1 (#614)

chore: update rspress to 1.20.1 (#614) #733

Workflow file for this run

name: Test
on:
push:
branches:
- main
paths-ignore:
- "**/*.md"
- "website/**"
pull_request:
paths-ignore:
- "**/*.md"
- "website/**"
workflow_dispatch:
jobs:
verify:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node_version: ["18", "20", "22"]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
- name: Use Node.js ${{ matrix.node_version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node_version }}
cache: "pnpm"
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Lint
run: pnpm lint
- name: Type check
run: pnpm typecheck
- name: Run tests
run: pnpm test