[CHE-199] Create Tests and Error Handling for userController registerUser #322
Workflow file for this run
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: build-tests | |
on: | |
pull_request: | |
jobs: | |
unit-testing: | |
runs-on: ubuntu-latest | |
env: | |
JWT_SECRET: ${{ secrets.JWT_SECRET }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '20.14.0' | |
- name: Build Docker Image | |
run: docker build -t codehammers/ch-dev-dep-v3:latest -f Dockerfile-dev . | |
- name: Install Root Dependencies | |
run: docker run codehammers/ch-dev-dep-v3:latest npm install | |
- name: Install Client Dependencies | |
run: docker run codehammers/ch-dev-dep-v3:latest /bin/sh -c "cd client && npm install" | |
- run: LINT_COMMAND=lint docker-compose -f docker-compose-lint.yml up --abort-on-container-exit | |
- run: docker-compose -f docker-compose-test.yml up --abort-on-container-exit | |
env: | |
JWT_SECRET: ${{ secrets.JWT_SECRET }} |