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 ..."