Skip to content

add param to usePdfReader #1166

add param to usePdfReader

add param to usePdfReader #1166

Workflow file for this run

name: CI
on: [push]
jobs:
build:
name: Build, lint, and test
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Use Node 20
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Use NPM 9.x
run: npm i -g npm@8
- name: Install Dependencies
run: npm install
- name: Lint
run: npm run lint
- name: Check Formatting
run: npm run prettier:check
- name: Test
run: npm run test:ci
- name: Build
run: npm run build