mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-15 01:41:20 +08:00
80c6eebd12
* refactor(components): [time-picker] basic-time-spinner * Refactor `basic-time-spinner` to script setup. * refactor(components): [time-picker] basic-time-spinner * Resolve typing issues in `basic-time-spinner`. * Extract code from `basic-time-spinner`. * chore: remove parallel * chore: set node space size * chore: remove parallel jobs * chore: update pr-docs-build.yml * chore: revert remove parallel Co-authored-by: JeremyWuuuuu <15975785+JeremyWuuuuu@users.noreply.github.com>
42 lines
856 B
YAML
42 lines
856 B
YAML
# This workflow runs on target, so there is no need to worry about secrets
|
|
|
|
name: 🧪 Test SSR
|
|
|
|
on: pull_request
|
|
|
|
jobs:
|
|
# Build successfully, start deployment
|
|
test:
|
|
name: SSR rendering test
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
matrix:
|
|
node-version: [16.x]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
persist-credentials: false
|
|
|
|
- name: Setup pnpm
|
|
uses: pnpm/action-setup@v2
|
|
|
|
- name: Setup node
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
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: Do test
|
|
run: pnpm test:ssr
|