trying to fix ci
Some checks failed
test and deploy / Build & Unit Test (push) Failing after 2m3s
test and deploy / Package & Push Container (push) Has been skipped

This commit is contained in:
Andy Pack 2024-07-20 11:49:47 +01:00
parent 95c00ae352
commit 0033b4055e
Signed by: sarsoo
GPG Key ID: A55BA3536A5E0ED7
3 changed files with 3 additions and 3 deletions

View File

@ -55,7 +55,7 @@ jobs:
# JS build for checking errors # JS build for checking errors
- name: Compile Front-end - name: Compile Front-end
run: npm run build --if-present run: npm run build
# JS tests # JS tests
# - name: Run JavaScript Tests # - name: Run JavaScript Tests

View File

@ -53,7 +53,7 @@ jobs:
# JS build for checking errors # JS build for checking errors
- name: Compile Front-end - name: Compile Front-end
run: npm run build --if-present run: npm run build
# JS tests # JS tests
# - name: Run JavaScript Tests # - name: Run JavaScript Tests

View File

@ -11,7 +11,7 @@ COPY ./src /mixonomer/src/
WORKDIR /mixonomer WORKDIR /mixonomer
RUN npm ci RUN npm ci
RUN npm run build --if-present RUN npm run build
RUN sass src/scss/style.scss build/style.css RUN sass src/scss/style.scss build/style.css
FROM python:3.11-slim as py FROM python:3.11-slim as py