Skip to content

fix(surface): fix mobile single-finger scrolling #40

fix(surface): fix mobile single-finger scrolling

fix(surface): fix mobile single-finger scrolling #40

Workflow file for this run

name: Build / Surface
on:
workflow_call:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
concurrency:
group: build-surface-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-24.04
steps:
- name: Check out repository
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Set up pnpm
uses: pnpm/action-setup@v6
with:
version: 11.4.0
- name: Set up Node.js
uses: actions/setup-node@v7
with:
node-version: 24
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
shell: bash
- name: Build application
run: pnpm build
shell: bash