Skip to content

Unify tests #134

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 1, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
9 changes: 1 addition & 8 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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 ..."
Expand Down