Skip to content

Add TOC link to serverless doc section in readme #549

Add TOC link to serverless doc section in readme

Add TOC link to serverless doc section in readme #549

Workflow file for this run

name: PR Build
on: pull_request
jobs:
code-quality:
runs-on: ubuntu-latest
timeout-minutes: 5
strategy:
# Don't fail all elements of the matrix if one fails
fail-fast: false
matrix:
node-version: ['20.x', '22.x', '24.x']
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build
- run: npm run lint
- run: npm run cover
- run: npm run format:check