docs(zh): Chinese translation for the custom components in the navigation bar #4751
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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] | |
workflow_dispatch: | |
permissions: {} | |
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 |