Update node version #326
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: Docker Compose Build | |
on: push | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build the docker-compose images | |
run: docker-compose build | |
- name: Run frontend typecheck | |
run: docker-compose run -w /app encam-frontend-devel yarn run typecheck | |
- name: Run frontend tests | |
run: docker-compose run -w /app encam-frontend-devel yarn run test | |
- name: Run backend tests | |
run: docker-compose run -w /code main python3 test.py |