Skip to content

fix(ui): 修复 iOS Safari 后台恢复后视口偏移问题 — 用 JS --vh 替代有 bug 的 100dvh #38

fix(ui): 修复 iOS Safari 后台恢复后视口偏移问题 — 用 JS --vh 替代有 bug 的 100dvh

fix(ui): 修复 iOS Safari 后台恢复后视口偏移问题 — 用 JS --vh 替代有 bug 的 100dvh #38

Workflow file for this run

name: CI
on:
push:
branches: [main, dev]
pull_request:
branches: [main]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm run test:run
- name: Check i18n key parity
run: npm run check-i18n
- name: Build
run: npm run build