From 82f7ffe33cd4952e8958450ebb48a7afac6f3266 Mon Sep 17 00:00:00 2001 From: Cesar Flores Date: Fri, 6 Mar 2026 21:43:47 +0700 Subject: [PATCH] fix: update test job in justfile to build image before running tests --- justfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/justfile b/justfile index 3d71df1..a0aec49 100644 --- a/justfile +++ b/justfile @@ -13,7 +13,8 @@ build: # Tests inside the docker image test: - docker run --rm {{IMAGE}}:{{VERSION}} sh -c "\ + docker build -t {{IMAGE}}:test . + docker run --rm {{IMAGE}}:test sh -c "\ mise --version \ && python --version \ && node --version"