More small updates #435
This file contains hidden or 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: Application CI | |
on: | |
push: | |
branches: ["*"] | |
pull_request: | |
branches: ["*"] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: docker compose pull | |
- name: Docker Layer Caching | |
uses: satackey/action-docker-layer-caching@v0.0.11 | |
continue-on-error: true | |
- name: '[Run] Install the project' | |
id: install | |
run: | | |
sudo make install | |
- name: '[Run] 🚀 Test (backend)' | |
run: make test-backend | |
- name: '[Run] 🚀 Test (frontend)' | |
run: make test-frontend |