Skip to content

[CHE 126] Add Remaining Profile Info To Edit Profile Form #280

[CHE 126] Add Remaining Profile Info To Edit Profile Form

[CHE 126] Add Remaining Profile Info To Edit Profile Form #280

Workflow file for this run

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: Build Docker Image
run: docker build -t codehammers/ch-dev-dep-v2:latest -f Dockerfile-dev .
- name: Install Root Dependencies
run: docker run codehammers/ch-dev-dep-v2:latest npm install
- name: Install Client Dependencies
run: docker run codehammers/ch-dev-dep-v2: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 }}