Little fixes for hopefully more successes.
Some checks failed
Tests / Build and Push CICD Image (push) Successful in 46m47s
Tests / End of File Check (push) Successful in 27s
Tests / Mixed Line Ending Check (push) Successful in 28s
Tests / TOML Formatting Check (push) Failing after 26s
Tests / Ruff Linting (push) Failing after 23s
Tests / Ruff Format Check (push) Successful in 25s
Tests / Pyright Type Check (push) Failing after 1m0s
Tests / Darglint Docstring Check (push) Successful in 27s
Tests / No Docstring Types Check (push) Successful in 22s
Tests / ESLint Check (push) Successful in 54s
Tests / Prettier Format Check (push) Successful in 30s
Tests / TypeScript Type Check (push) Successful in 1m5s
Tests / Trailing Whitespace Check (push) Failing after 7m54s
Tests / Backend Tests (push) Failing after 1m6s
Tests / TSDoc Lint Check (push) Successful in 56s
Tests / Backend Doctests (push) Successful in 28s
Tests / Frontend Tests (push) Failing after 2m12s
Tests / Integration Tests (push) Has been skipped
Tests / End-to-End Tests (push) Has been skipped
Tests / TOML Syntax Check (push) Successful in 11m16s
Tests / YAML Syntax Check (push) Failing after 13m32s
Some checks failed
Tests / Build and Push CICD Image (push) Successful in 46m47s
Tests / End of File Check (push) Successful in 27s
Tests / Mixed Line Ending Check (push) Successful in 28s
Tests / TOML Formatting Check (push) Failing after 26s
Tests / Ruff Linting (push) Failing after 23s
Tests / Ruff Format Check (push) Successful in 25s
Tests / Pyright Type Check (push) Failing after 1m0s
Tests / Darglint Docstring Check (push) Successful in 27s
Tests / No Docstring Types Check (push) Successful in 22s
Tests / ESLint Check (push) Successful in 54s
Tests / Prettier Format Check (push) Successful in 30s
Tests / TypeScript Type Check (push) Successful in 1m5s
Tests / Trailing Whitespace Check (push) Failing after 7m54s
Tests / Backend Tests (push) Failing after 1m6s
Tests / TSDoc Lint Check (push) Successful in 56s
Tests / Backend Doctests (push) Successful in 28s
Tests / Frontend Tests (push) Failing after 2m12s
Tests / Integration Tests (push) Has been skipped
Tests / End-to-End Tests (push) Has been skipped
Tests / TOML Syntax Check (push) Successful in 11m16s
Tests / YAML Syntax Check (push) Failing after 13m32s
Signed-off-by: Cliff Hill <xlorep@darkhelm.org>
This commit is contained in:
@@ -1,3 +1,4 @@
|
|||||||
|
---
|
||||||
repos:
|
repos:
|
||||||
# General hooks for all files
|
# General hooks for all files
|
||||||
- repo: https://github.com/pre-commit/pre-commit-hooks
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
||||||
|
|||||||
@@ -170,7 +170,7 @@ RUN export NODE_OPTIONS="--max-old-space-size=1024 --max-semi-space-size=64" &&
|
|||||||
echo "Attempt $i: Installing frontend dependencies (Pi 400 compatible)..." && \
|
echo "Attempt $i: Installing frontend dependencies (Pi 400 compatible)..." && \
|
||||||
timeout 2400 yarn install --immutable --mode=skip-build \
|
timeout 2400 yarn install --immutable --mode=skip-build \
|
||||||
&& break || \
|
&& break || \
|
||||||
(echo "Attempt $i failed, cleaning up and retrying..." && \
|
(echo "Attempt $i failed, cleaning up and retrying..." && \
|
||||||
rm -rf node_modules .yarn/cache .yarn/install-state.gz && \
|
rm -rf node_modules .yarn/cache .yarn/install-state.gz && \
|
||||||
yarn cache clean --all 2>/dev/null || true && \
|
yarn cache clean --all 2>/dev/null || true && \
|
||||||
sleep 60); \
|
sleep 60); \
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
---
|
||||||
services:
|
services:
|
||||||
database:
|
database:
|
||||||
image: postgres:16-alpine
|
image: postgres:16-alpine
|
||||||
@@ -20,7 +21,8 @@ services:
|
|||||||
context: .
|
context: .
|
||||||
dockerfile: Dockerfile.backend
|
dockerfile: Dockerfile.backend
|
||||||
environment:
|
environment:
|
||||||
DATABASE_URL: postgresql://plex_user:plex_password@database:5432/plex_playlist
|
DATABASE_URL: >-
|
||||||
|
postgresql://plex_user:plex_password@database:5432/plex_playlist
|
||||||
ENVIRONMENT: production
|
ENVIRONMENT: production
|
||||||
ports:
|
ports:
|
||||||
- "8000:8000"
|
- "8000:8000"
|
||||||
|
|||||||
Reference in New Issue
Block a user