Skip to content

fix: fix mobile nav pointer events bug #167

fix: fix mobile nav pointer events bug

fix: fix mobile nav pointer events bug #167

Workflow file for this run

name: CI Checks
on: [push, pull_request]
jobs:
quality:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v3
name: Install pnpm
with:
version: 8
run_install: false
- uses: actions/setup-node@v3
with:
node-version: '20'
cache: 'pnpm'
- name: Install Dependencies
run: pnpm install
- name: Run Linting/Style Check
run: pnpm lint-check
- name: Type Check
run: pnpm type-check
- name: Build Check
run: pnpm build
- name: Cache build output
uses: actions/cache@v3
with:
path: |
.next
dist
build
key: ${{ runner.os }}-build-${{ github.sha }}
restore-keys: |
${{ runner.os }}-build-