Skip to content

Allow custom application of pageParam and sanitization of key #154

Allow custom application of pageParam and sanitization of key

Allow custom application of pageParam and sanitization of key #154

Workflow file for this run

name: ci
on:
push:
branches:
- master
pull_request:
types:
- opened
- synchronize
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [16, 18]
steps:
- name: Checkout branch
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 7
- name: Install dependencies
run: pnpm install
- name: Build
run: pnpm run build
- name: Generate
run: pnpm run generate
- name: Lint
run: pnpm run lint
- name: Test
run: pnpm run test