1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32name: 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