mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
28 lines
433 B
YAML
28 lines
433 B
YAML
# Check javascript template files
|
|
|
|
name: Javascript Templates
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
pull_request:
|
|
branches-ignore:
|
|
- l10*
|
|
|
|
jobs:
|
|
|
|
javascript:
|
|
runs-on: ubuntu-latest
|
|
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
steps:
|
|
- name: Checkout Code
|
|
uses: actions/checkout@v2
|
|
- name: Check Files
|
|
run: |
|
|
cd ci
|
|
python check_js_templates.py
|
|
|