Skip to content

added additional eslint features, created new workflow for linting #6

added additional eslint features, created new workflow for linting

added additional eslint features, created new workflow for linting #6

Workflow file for this run

name: Unit Tests
on:
pull_request:
branches:
- main
- production
jobs:
jest-testing:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build images
run: docker-compose build
- name: Run Test
run: docker-compose run --rm api sh -c "npm run test"