From 1c13108eaba77fef84102bd14e5c43c2a615a4b8 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Thu, 25 Apr 2024 13:34:46 +0000 Subject: [PATCH] fix tests --- .github/workflows/main.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index efbf1b7..b3bbfd1 100755 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -24,7 +24,12 @@ jobs: - name: Install dependencies run: npm install - name: Compile CSS - run: npm run scss --style=compressed styles.scss + run: | + npx sass cssOMS/styles.scss cssOMS/styles.css --style=compressed + npx sass cssOMS/animate.scss cssOMS/animate.css --style=compressed + npx sass cssOMS/timeline.scss cssOMS/timeline.css --style=compressed + npx sass cssOMS/tree.scss cssOMS/tree.css --style=compressed + npx sass cssOMS/print.scss cssOMS/print.css --style=compressed - name: Check for modified files id: git-check run: echo ::set-output name=modified::$(if git diff-index --quiet HEAD -- *.{scss,css}; then echo "false"; else echo "true"; fi)