Skip to content

ci: updated workflow #3

ci: updated workflow

ci: updated workflow #3

Workflow file for this run

name: Run Unit Tests
on:
push:
branches:
- feat/testing
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '20'
- name: Install dependencies
run: yarn install
working-directory: apps/api/
- name: Run unit tests
run: yarn test-unit
working-directory: apps/api/