From 637d3b3e789f5a3efcd2f05f248c91ba47e3f1c8 Mon Sep 17 00:00:00 2001 From: Benjamin Dromard Date: Thu, 19 Dec 2024 15:39:12 +0100 Subject: [PATCH] build: add install target for dashboard --- dashboard/Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/dashboard/Makefile b/dashboard/Makefile index 00be699..7c972bf 100644 --- a/dashboard/Makefile +++ b/dashboard/Makefile @@ -1,11 +1,14 @@ -component_tests: +component_test: @echo "Running components' tests with Vitest" npm test -e2e_tests: +e2e_test: @echo "Running end-to-end tests with Playwright" npx playwright test +install: + npm install + build_prod: @echo "Building production executable" npm run build