Skip to content

Add useScroll utility hook #13

Add useScroll utility hook

Add useScroll utility hook #13

Workflow file for this run

name: Build and Test
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
build_test:
name: Build and Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/[email protected]
with:
version: 8
- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
node-version: 20
cache: pnpm
- name: Install dependencies
run: pnpm install --no-frozen-lockfile --ignore-scripts
- name: Build package
run: pnpm run build
- name: Test
run: pnpm run test
- name: Lint
run: pnpm lint