fix: 修复小尺寸的input文字没有居中的问题 #4286
Workflow file for this run
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: 'lighthouse test' | |
on: | |
pull_request: | |
branches: [main, release, milestone**, feat/a11y-aria] | |
push: | |
branches: [main, release, milestone**] | |
jobs: | |
lhci: | |
name: Lighthouse | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js 16 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: npm install, build | |
run: | | |
npm i -g lerna@^6 gulp | |
lerna bootstrap | |
lerna run build:lib | |
npm run build-storybook | |
- name: run Lighthouse CI | |
env: | |
LHCI_GITHUB_APP_TOKEN: ${{ secrets.LHCI_GITHUB_APP_TOKEN }} | |
run: | | |
npm install -g @lhci/[email protected] | |
lhci autorun |