ci: fix tests (#1069)

* fix(locailization): fix ci

Signed-off-by: Xe Iaso <me@xeiaso.net>

* fix(test): fix CI

Signed-off-by: Xe Iaso <me@xeiaso.net>

* fix(test): fix CI?

Signed-off-by: Xe Iaso <me@xeiaso.net>

* fix(test): fix CI??

Signed-off-by: Xe Iaso <me@xeiaso.net>

---------

Signed-off-by: Xe Iaso <me@xeiaso.net>
This commit is contained in:
Xe Iaso 2025-08-31 08:13:00 -04:00 committed by GitHub
parent f6e077c907
commit f0bcbe43af
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 19 additions and 22 deletions

View file

@ -7,13 +7,9 @@ export KO_DOCKER_REPO=ko.local
set -u
(
cd ../.. && \
npm ci && \
npm run assets \
ko build --platform=all --base-import-paths --tags="latest" --image-user=1000 --image-annotation="" --image-label="" ./cmd/anubis -L
)
source ../lib/lib.sh
build_anubis_ko
docker compose up -d
attempt=1
@ -31,4 +27,4 @@ while ! docker compose ps | grep healthy; do
attempt=$(( attempt + 1 ))
done
docker compose down
exit 0