2022-04-08 02:49:13 +08:00
|
|
|
name: 🧪 Test SSR
|
2022-03-18 21:37:37 +08:00
|
|
|
|
|
|
|
on: pull_request
|
|
|
|
|
2022-09-14 09:50:55 +08:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.event.number || github.sha }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2022-03-18 21:37:37 +08:00
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
name: SSR rendering test
|
|
|
|
runs-on: ubuntu-latest
|
2022-05-10 19:24:16 +08:00
|
|
|
|
2022-03-18 21:37:37 +08:00
|
|
|
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:
|
2022-09-14 09:50:55 +08:00
|
|
|
node-version: 16
|
2022-09-22 09:04:40 +08:00
|
|
|
|
|
|
|
- name: Get pnpm store directory
|
|
|
|
id: pnpm-cache
|
|
|
|
run: |
|
|
|
|
echo "::set-output name=pnpm_cache_dir::$(pnpm store path)"
|
|
|
|
|
|
|
|
- uses: actions/cache@v3
|
|
|
|
name: Setup pnpm cache
|
|
|
|
with:
|
|
|
|
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }}
|
|
|
|
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-pnpm-store-
|
2022-03-18 21:37:37 +08:00
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
run: pnpm i --frozen-lockfile
|
|
|
|
|
|
|
|
- name: Local build
|
|
|
|
run: pnpm build
|
2022-06-06 22:02:56 +08:00
|
|
|
env:
|
|
|
|
NODE_OPTIONS: --max-old-space-size=4096
|
2022-03-18 21:37:37 +08:00
|
|
|
|
2022-09-14 09:50:55 +08:00
|
|
|
- name: Test
|
2022-03-18 21:37:37 +08:00
|
|
|
run: pnpm test:ssr
|