From 0a1bd6ea9e3e3cee5a89c1f002843a4ab942c655 Mon Sep 17 00:00:00 2001 From: Miroslav Pejic Date: Mon, 16 Mar 2026 00:09:52 +0100 Subject: [PATCH] [mirotalk] - #290 fix(ci): copy config template before running tests --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d90f2e58..8a976be3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,6 +20,9 @@ jobs: - name: Install dependencies run: npm install + - name: Create config from template + run: cp app/src/config.template.js app/src/config.js + - name: Run unit tests run: npm test