2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-04-28 11:36:44 +00:00

use caching

This commit is contained in:
Matthias 2021-12-02 11:23:07 +01:00
parent bd60364deb
commit 567a0b1c8b
No known key found for this signature in database
GPG Key ID: F50EF5741D33E076

View File

@ -29,6 +29,7 @@ jobs:
uses: actions/setup-node@v2 uses: actions/setup-node@v2
with: with:
node-version: '16' node-version: '16'
cache: 'npm'
- run: npm install - run: npm install
- name: Setup Python - name: Setup Python
uses: actions/setup-python@v2 uses: actions/setup-python@v2
@ -43,7 +44,6 @@ jobs:
invoke static invoke static
- name: Check HTML Files - name: Check HTML Files
run: | run: |
npm install markuplint
npx markuplint InvenTree/build/templates/build/*.html npx markuplint InvenTree/build/templates/build/*.html
npx markuplint InvenTree/company/templates/company/*.html npx markuplint InvenTree/company/templates/company/*.html
npx markuplint InvenTree/order/templates/order/*.html npx markuplint InvenTree/order/templates/order/*.html