Skip to content

Start working on big update #348

Start working on big update

Start working on big update #348

Workflow file for this run

name: Application CI

Check failure on line 1 in .github/workflows/app.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/app.yaml

Invalid workflow file

invalid `cron` attribute "0 23 * * 7"
on:
push:
branches: ["*"]
schedule:
- cron: "0 23 * * 7"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: docker-compose pull
- name: Docker Layer Caching
uses: satackey/[email protected]
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