Skip to content

fix(validateQuote): allow author to be undefined #14

fix(validateQuote): allow author to be undefined

fix(validateQuote): allow author to be undefined #14

Workflow file for this run

name: Tests
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
tests:
name: Formatting, Linting & Typechecking
runs-on: ubuntu-latest
steps:
- name: Checkout Project
uses: actions/checkout@v4
- name: Use Latest Node.js
uses: actions/setup-node@v4
with:
node-version: latest
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: latest
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build
run: pnpm build
- name: Format
run: pnpm format --check
- name: Lint
run: pnpm lint --fix=false