Skip to content

fix: Change isBot to always return boolean, prevent TikTok false positive, etc #8

fix: Change isBot to always return boolean, prevent TikTok false positive, etc

fix: Change isBot to always return boolean, prevent TikTok false positive, etc #8

Workflow file for this run

name: CI
on:
push:
branches:
- main
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [18, 20]
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node }}
cache: npm
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Type check
run: npm run typecheck
- name: Test
run: npm run test:vitest
- name: Build
run: npm run build