From 0033b4055e8ed6516a3c3358cb993ee8b126604c Mon Sep 17 00:00:00 2001 From: Andy Pack Date: Sat, 20 Jul 2024 11:49:47 +0100 Subject: [PATCH] trying to fix ci --- .gitea/workflows/ci.yml | 2 +- .github/workflows/ci.yml | 2 +- Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 8196992..4f5dcd1 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -55,7 +55,7 @@ jobs: # JS build for checking errors - name: Compile Front-end - run: npm run build --if-present + run: npm run build # JS tests # - name: Run JavaScript Tests diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a0b4885..d860510 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -53,7 +53,7 @@ jobs: # JS build for checking errors - name: Compile Front-end - run: npm run build --if-present + run: npm run build # JS tests # - name: Run JavaScript Tests diff --git a/Dockerfile b/Dockerfile index 9aa064f..d088a06 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,7 @@ COPY ./src /mixonomer/src/ WORKDIR /mixonomer RUN npm ci -RUN npm run build --if-present +RUN npm run build RUN sass src/scss/style.scss build/style.css FROM python:3.11-slim as py