Skip to content

feat: add prisma to the backend #5

feat: add prisma to the backend

feat: add prisma to the backend #5

Workflow file for this run

name: Run Backend Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 14
- name: Install Dependencies
run: |
cd backend
npm install
- name: Run Tests
run: |
cd backend
npm test