test-font-feature #5
This file contains 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-font-feature | |
on: | |
push: | |
tags: | |
- '*' | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '18' | |
registry-url: 'https://registry.npmjs.org' | |
- name: Install dependencies | |
run: | | |
npm install pnpm playwright -g | |
pnpm install | |
- name: Install Playwright browsers | |
run: pnpm exec playwright install | |
- name: Cache fonts | |
id: cache-fonts | |
uses: actions/cache@v3 | |
with: | |
path: packages/test/temp/font # 字体文件的实际存放路径 | |
key: ${{ runner.os }}-fonts-${{ hashFiles('packages/test/script/downloadFonts.mjs,packages/test/script/downloadFont/**/*,packages/test/FeatureConfig.json') }} | |
restore-keys: | | |
${{ runner.os }}-fonts- | |
- name: Install fonts dependencies | |
if: steps.cache-fonts.outputs.cache-hit != 'true' | |
run: node ./script/downloadFonts.mjs | |
working-directory: packages/test | |
- name: Update Deps | |
working-directory: packages/test | |
run: | | |
pnpm uninstall cn-font-split | |
pnpm i cn-font-split | |
pnpm cn-font-split ls | |
- name: Build Font | |
working-directory: packages/test | |
run: | | |
pnpm build | |
- name: Start development server | |
working-directory: packages/test | |
run: | | |
nohup pnpm dev > /dev/null 2>&1 & | |
sleep 3 | |
- name: Run Playwright tests | |
working-directory: packages/test | |
run: pnpm test | |
- name: Upload test results | |
if: ${{ !cancelled() }} | |
uses: actions/upload-artifact@v3 | |
with: | |
name: playwright-report | |
path: packages/test/playwright-report |