2021-12-02 11:28:10 +00:00
|
|
|
# Checks for each PR
|
2021-09-12 11:36:14 +00:00
|
|
|
|
2021-12-02 11:28:10 +00:00
|
|
|
name: PR checks
|
2021-09-12 11:36:14 +00:00
|
|
|
|
|
|
|
on:
|
2021-12-02 11:30:44 +00:00
|
|
|
push:
|
|
|
|
branches-ignore:
|
|
|
|
- l10*
|
|
|
|
|
2021-09-12 11:36:14 +00:00
|
|
|
pull_request:
|
|
|
|
branches-ignore:
|
|
|
|
- l10*
|
|
|
|
|
2021-12-02 11:35:08 +00:00
|
|
|
env:
|
|
|
|
python_version: 3.7
|
2021-12-02 11:47:04 +00:00
|
|
|
node_version: 16
|
|
|
|
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
INVENTREE_DB_ENGINE: sqlite3
|
|
|
|
INVENTREE_DB_NAME: inventree
|
|
|
|
INVENTREE_MEDIA_ROOT: ./media
|
|
|
|
INVENTREE_STATIC_ROOT: ./static
|
2021-12-02 11:35:08 +00:00
|
|
|
|
2021-12-02 11:30:44 +00:00
|
|
|
|
2021-09-12 11:36:14 +00:00
|
|
|
jobs:
|
|
|
|
|
2021-12-02 11:28:10 +00:00
|
|
|
check_version:
|
2021-12-02 11:46:31 +00:00
|
|
|
name: version number
|
2021-09-12 11:36:14 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
2021-09-12 11:40:56 +00:00
|
|
|
steps:
|
|
|
|
- name: Checkout Code
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Check version number
|
|
|
|
run: |
|
2021-09-12 12:06:06 +00:00
|
|
|
python3 ci/check_version_number.py --branch ${{ github.base_ref }}
|
2021-12-02 11:30:44 +00:00
|
|
|
|
|
|
|
pep_style:
|
2021-12-02 11:46:31 +00:00
|
|
|
name: PEP style (python)
|
2021-12-02 11:30:44 +00:00
|
|
|
needs: check_version
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout code
|
|
|
|
uses: actions/checkout@v2
|
2021-12-02 11:35:08 +00:00
|
|
|
- name: Set up Python ${{ env.python_version }}
|
2021-12-02 11:30:44 +00:00
|
|
|
uses: actions/setup-python@v2
|
|
|
|
with:
|
2021-12-02 11:35:08 +00:00
|
|
|
python-version: ${{ env.python_version }}
|
2021-12-02 11:30:44 +00:00
|
|
|
- name: Install deps
|
|
|
|
run: |
|
|
|
|
pip install flake8==3.8.3
|
|
|
|
pip install pep8-naming==0.11.1
|
|
|
|
- name: flake8
|
|
|
|
run: |
|
|
|
|
flake8 InvenTree
|
2021-12-02 11:47:04 +00:00
|
|
|
|
|
|
|
javascript:
|
|
|
|
name: javascript template files
|
|
|
|
needs: pep_style
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout Code
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Install node.js ${{ env.node_version }}
|
|
|
|
uses: actions/setup-node@v2
|
|
|
|
with:
|
|
|
|
node-version: ${{ env.node_version }}
|
|
|
|
- run: npm install
|
|
|
|
- name: Setup Python
|
|
|
|
uses: actions/setup-python@v2
|
|
|
|
with:
|
|
|
|
python-version: ${{ env.python_version }}
|
|
|
|
- name: Install Dependencies
|
|
|
|
run: |
|
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get install gettext
|
|
|
|
pip3 install invoke
|
|
|
|
invoke install
|
|
|
|
invoke static
|
|
|
|
- name: Check Templated Files
|
|
|
|
run: |
|
|
|
|
cd ci
|
|
|
|
python check_js_templates.py
|
|
|
|
- name: Lint Javascript Files
|
|
|
|
run: |
|
|
|
|
npm install eslint eslint-config-google
|
|
|
|
invoke render-js-files
|
|
|
|
npx eslint js_tmp/*.js
|