Skip to content

BACKEND-9: Add get user by id route #14

BACKEND-9: Add get user by id route

BACKEND-9: Add get user by id route #14

Workflow file for this run

name: Jest CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
cache-dependency-path: ./yarn.lock
node-version: ${{ matrix.node-version }}
cache: "yarn"
- name: Install dependencies
run: yarn install
- name: Run Jest tests
run: yarn test