Skip to content

Doc: Added use-throttled-hook to README.md #42

Doc: Added use-throttled-hook to README.md

Doc: Added use-throttled-hook to README.md #42

Workflow file for this run

name: CI
on:
pull_request:
branches:
- 'main'
jobs:
build:
name: Build, lint, and test on Node ${{ matrix.node }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: ['20.x']
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- uses: pnpm/action-setup@v4
# with:
# version: 8
- uses: actions/setup-node@v4
with:
node-version: 20.x
cache: 'pnpm'
- run: pnpm install --no-frozen-lockfile
- run: pnpm run type-check && pnpm run build