Skip to content

update README

update README #23

Workflow file for this run

name: Run Tests
on:
- push
- pull_request
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20.x"
- run: npm ci
- run: npm test
env:
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}