feat(docs + api + front): add srs docs page, add spaced repetition ca… #457
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |