From f363c0f08414faf4d008ccdcd77aa424b57737e8 Mon Sep 17 00:00:00 2001 From: Oliver Date: Sat, 4 Sep 2021 09:22:52 +1000 Subject: [PATCH] Fix workflow file --- .github/workflows/html.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/html.yaml b/.github/workflows/html.yaml index e7714cd99d..069da7cbb4 100644 --- a/.github/workflows/html.yaml +++ b/.github/workflows/html.yaml @@ -42,12 +42,12 @@ jobs: - name: Check HTML Files run: | npm install markuplint - npm markuplint InvenTree/build/templates/build/*.html - npm markuplint InvenTree/common/templates/common/*.html - npm markuplint InvenTree/company/templates/company/*.html - npm markuplint InvenTree/order/templates/order/*.html - npm markuplint InvenTree/part/templates/part/*.html - npm markuplint InvenTree/stock/templates/stock/*.html + npx markuplint InvenTree/build/templates/build/*.html + npx markuplint InvenTree/common/templates/common/*.html + npx markuplint InvenTree/company/templates/company/*.html + npx markuplint InvenTree/order/templates/order/*.html + npx markuplint InvenTree/part/templates/part/*.html + npx markuplint InvenTree/stock/templates/stock/*.html npx markuplint InvenTree/templates/*.html npx markuplint InvenTree/templates/InvenTree/*.html npx markuplint InvenTree/templates/InvenTree/settings/*.html