e2e : healthcheck front #15
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: back_unit_tests | |
on: push | |
jobs: | |
back_unit_tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout TGC code | |
uses: actions/checkout@v4 | |
- name: npm install dependencies | |
run: cd backend && npm i | |
- name: Move in back and Typescript transpile | |
run: cd backend && npx tsc | |
- name: Run back unit tests | |
run: npm test | |
working-directory: ./backend |