Files
element-plus/.github/workflows/test-ssr.yml
一只前端汪 4ba0d49db9 ci: use setup-node cache (#22546)
* chore(ci): use setup-node cache

* fix: Consistent with the naming on the Node.js

* fix: 还原命名

* fix: 1
2025-10-22 09:39:24 +02:00

41 lines
792 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: Local build
run: pnpm build
env:
NODE_OPTIONS: --max-old-space-size=4096
- name: Test
run: pnpm test:ssr