perf(ui/editor): optimize editor styles for narrow-width screens #115
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 Frontend | |
on: | |
push: | |
branches: ['*', '!release/*'] | |
paths: ['ui/**'] | |
tags-ignore: ['v*'] | |
pull_request: | |
paths: ['ui/**'] | |
branches: ['*', '!release/*'] | |
jobs: | |
test_ui: | |
strategy: | |
matrix: | |
node: [18, 20] | |
os: [ubuntu-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- name: Use Node.js ${{ matrix.node }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: pnpm | |
- name: Install Dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Package Build Test | |
run: pnpm build:all | |
- name: Unit test | |
run: pnpm test | |
# https://github.com/arethetypeswrong/arethetypeswrong.github.io | |
- name: 'arethetypeswrong test' | |
run: pnpm -F artalk attw |