Skip to content
This repository has been archived by the owner on Oct 11, 2024. It is now read-only.

Update Docs

Update Docs #37

Workflow file for this run

name: Run Jest Tests
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '21'
- name: Install Dependencies
run: npm ci
- name: Build Project
run: npm run build
- name: Run Jest
run: npm run test
env:
ANILIST_TOKEN: ${{ secrets.ANILIST_TOKEN }}