Skip to content

feat(docs + api + front): add srs docs page, add spaced repetition ca… #457

feat(docs + api + front): add srs docs page, add spaced repetition ca…

feat(docs + api + front): add srs docs page, add spaced repetition ca… #457

Workflow file for this run

name: Run tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node.JS
uses: actions/setup-node@v3
with:
node-version: 'lts/Hydrogen'
- name: Install dependencies and generate Prisma types
run: |
npm install --legacy-peer-deps
npm run generate
- name: Build and lint
run: |
npm run build
npm run lint
- name: Run tests
run: npm run test