fix(transition): fix reactive state to prevent jumping #353
This file contains hidden or 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: π§ Build | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build: | |
name: π§ Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: β Checkout branch ${{ github.ref }} | |
uses: actions/checkout@v4 | |
- name: π§ Build | |
uses: ./.github/actions/build | |
web: | |
name: βοΈ Build Web | |
runs-on: ubuntu-latest | |
steps: | |
- name: β Checkout branch ${{ github.ref }} | |
uses: actions/checkout@v4 | |
- name: π§ Build | |
uses: ./.github/actions/build | |
with: | |
script: 'build:web' | |
test: | |
name: π§ͺ Unit Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: β Checkout branch ${{ github.ref }} | |
uses: actions/checkout@v4 | |
- name: π§± Install | |
uses: ./.github/actions/install | |
- name: π§ͺ Unit tests | |
run: | | |
# ================= π§ͺ Unit tests ================= | |
pnpm run test:unit | |
lint: | |
name: π§Ή Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: β Checkout branch ${{ github.ref }} | |
uses: actions/checkout@v4 | |
- name: π§± Install | |
uses: ./.github/actions/install | |
- name: π§± Versions | |
run: | | |
# ================= π Versions ================= | |
pnpm exec eslint --version | |
pnpm exec prettier --version | |
pnpm exec stylelint --version | |
- name: π Check | |
run: | | |
# ================= π Check ================= | |
pnpm run check | |
- name: π§Ή Lint | |
run: | | |
# ================= π§Ή Lint ================= | |
pnpm run lint | |
- name: πͺ Stylelint | |
run: | | |
# ================= πͺ Stylelint ================= | |
pnpm run style |