mirror of https://github.com/vuejs/vitepress
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
977 B
49 lines
977 B
name: Test
|
|
|
|
env:
|
|
NODE_OPTIONS: --max-old-space-size=6144
|
|
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: '1'
|
|
VITEST_SEGFAULT_RETRY: 3
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
branches: [main]
|
|
types: [opened, synchronize, reopened]
|
|
workflow_dispatch:
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.event.number || github.sha }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
matrix:
|
|
node_version: [18, 20, 22]
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install pnpm
|
|
uses: pnpm/action-setup@v3
|
|
|
|
- name: Set node version to ${{ matrix.node_version }}
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: ${{ matrix.node_version }}
|
|
cache: pnpm
|
|
|
|
- name: Install deps
|
|
run: pnpm install
|
|
|
|
- name: Install Playwright
|
|
run: pnpm playwright install chromium
|
|
|
|
- name: Check
|
|
run: pnpm check
|