mirror of
https://github.com/element-plus/element-plus.git
synced 2026-03-13 07:51:17 +08:00
44 lines
889 B
YAML
44 lines
889 B
YAML
name: 🧪 Test SSR
|
|
|
|
on:
|
|
pull_request:
|
|
workflow_dispatch:
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.event.number || github.sha }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
test:
|
|
name: SSR rendering test
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
persist-credentials: false
|
|
|
|
- name: Setup pnpm
|
|
uses: pnpm/action-setup@v4
|
|
|
|
- name: Setup node
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 20
|
|
cache: 'pnpm'
|
|
|
|
- name: Install dependencies
|
|
run: pnpm i --frozen-lockfile
|
|
|
|
- name: Install Chromium for Puppeteer
|
|
run: npx puppeteer browsers install chrome
|
|
|
|
- name: Local build
|
|
run: pnpm build
|
|
env:
|
|
NODE_OPTIONS: --max-old-space-size=4096
|
|
|
|
- name: Test
|
|
run: pnpm test:ssr
|