Add GitHub Actions workflow configuration

pull/352/head
Sage Abdullah 2022-07-26 13:11:15 +07:00 zatwierdzone przez Karl Hobley
rodzic 591fab1bb7
commit c3a17fb0e8
1 zmienionych plików z 42 dodań i 0 usunięć

42
.github/workflows/lint.yml vendored 100644
Wyświetl plik

@ -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