From e98d7d1d8a2afbffae21e95146f634352426e427 Mon Sep 17 00:00:00 2001 From: Claudio Ortolina Date: Fri, 17 Apr 2026 10:08:25 +0100 Subject: [PATCH] Add asset build step to lint CI job --- .github/workflows/test_and_deploy.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/test_and_deploy.yml b/.github/workflows/test_and_deploy.yml index 96e93ff7..e45b44dc 100644 --- a/.github/workflows/test_and_deploy.yml +++ b/.github/workflows/test_and_deploy.yml @@ -68,6 +68,10 @@ jobs: mise set MIX_OS_DEPS_COMPILE_PARTITION_COUNT=2 - name: 🔮 Compile for DEV run: mix compile --warnings-as-errors + - name: Install npm dependencies + run: npm ci --prefix assets + - name: 🎨 Build assets + run: mix assets.build - name: 🌍 Check translations run: mix gettext.extract --check-up-to-date - name: 💅 Check formatting