Skip to content

build(deps): bump send and express in /backend #64

build(deps): bump send and express in /backend

build(deps): bump send and express in /backend #64

Workflow file for this run

name: Frontend Jest Unit Tests
on:
pull_request:
branches:
- main
permissions:
actions: read
contents: read
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: '18.17.1'
- name: Install dependencies
run: |
cd frontend
npm install
- name: Run Frontend Jest Unit Tests
run: |
cd frontend
NODE_ENV=test npm test