From 1c05fd6581bfbaa66492797c3748c816fae80707 Mon Sep 17 00:00:00 2001 From: Kevin Goslar Date: Tue, 1 Apr 2025 09:29:54 -0500 Subject: [PATCH] Unify tests --- .github/workflows/main.yml | 2 +- Makefile | 9 +-------- 2 files changed, 2 insertions(+), 9 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 67e375f..7f95ed4 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -18,4 +18,4 @@ jobs: node-version: "20" - run: echo "./node_modules/.bin" >> $GITHUB_PATH - run: make setup - - run: xvfb-run -a make test-ci + - run: xvfb-run -a make test diff --git a/Makefile b/Makefile index a3306a3..964d26f 100644 --- a/Makefile +++ b/Makefile @@ -48,14 +48,7 @@ setup: # prepare this code base for development yarn install make --no-print-directory build -test: # runs all the tests - make --no-print-directory build & \ - make --no-print-directory doc & \ - make --no-print-directory lint & \ - make --no-print-directory unit & \ - wait - -test-ci: build lint unit doc # runs all the tests on ci +test: build lint unit doc # runs all the tests on ci unit: compile # runs the unit tests echo "testing ..."