Skip to content

feat: use id to get profile pic #152

feat: use id to get profile pic

feat: use id to get profile pic #152

Workflow file for this run

name: Run Backend Tests
on:
push:
branches:
- "main"
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: 20
- name: Install Dependencies
run: |
cd backend
npm install
- name: Run Tests
run: |
cd backend
npm test