From c3a17fb0e8f688ca0c5a669cc576ea19cd1b8a5c Mon Sep 17 00:00:00 2001 From: Sage Abdullah Date: Tue, 26 Jul 2022 13:11:15 +0700 Subject: [PATCH] Add GitHub Actions workflow configuration --- .github/workflows/lint.yml | 42 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 .github/workflows/lint.yml diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml new file mode 100644 index 0000000..6671e82 --- /dev/null +++ b/.github/workflows/lint.yml @@ -0,0 +1,42 @@ +name: Bakerydemo CI + +on: + push: + pull_request: + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +jobs: + lint-server: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: 3.9 + cache: 'pip' + cache-dependency-path: 'requirements/*.txt' + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install -r requirements/development.txt + - name: Lint server + run: | + make lint-server + lint-client: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Set up Node + uses: actions/setup-node@v3 + with: + node-version: 16 + cache: 'npm' + - name: Install dependencies + run: npm ci + - name: Lint client + run: | + make lint-client