Skip to content

fix(browser): add custom scrollbar to firefox #350

fix(browser): add custom scrollbar to firefox

fix(browser): add custom scrollbar to firefox #350

Workflow file for this run

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: πŸ” Check
run: |
# ================= πŸ” Check =================
pnpm run check
- name: 🧹 Lint
run: |
# ================= 🧹 Lint =================
pnpm run lint
- name: πŸͺ„ Stylelint
run: |
# ================= πŸͺ„ Stylelint =================
pnpm run style