Skip to content

refactor(debounce): stabilize callback ref, add dispose, tidy tests #1495

refactor(debounce): stabilize callback ref, add dispose, tidy tests

refactor(debounce): stabilize callback ref, add dispose, tidy tests #1495

Workflow file for this run

name: Build
on:
push:
branches-ignore:
- main
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
Build:
runs-on: ubuntu-24.04
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
with:
persist-credentials: false
- name: Setup Project
uses: ./.github/actions/setup
- name: Build
run: pnpm build
- name: Upload build artifacts
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
with:
name: nextjs-build
path: .next/
retention-days: 7
include-hidden-files: true