Skip to content

Commit

Permalink
chore: changed make commands to use dash
Browse files Browse the repository at this point in the history
For consistency it now is the same as other commands to use dash
instead of underscore.
  • Loading branch information
Venefilyn committed Nov 25, 2024
1 parent 3565b56 commit 856c2fe
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ jobs:
API_URL="https://prod.packit.dev/api" make transpile-prod
- name: Run Vitest
run: make test_frontend_coverage
run: make test-frontend-coverage
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,13 @@ check:
test_image: files/ansible/install-deps.yaml files/ansible/recipe-tests.yaml
$(CONTAINER_ENGINE) build --rm -t $(TEST_IMAGE) -f Dockerfile.tests .

test_frontend:
test-frontend:
cd frontend && pnpm run test

test_frontend_coverage:
test-frontend-coverage:
cd frontend && pnpm run coverage

check_in_container: test_image
check-in-container: test_image
$(CONTAINER_ENGINE) run --rm \
--security-opt label=disable \
$(TEST_IMAGE) make check

0 comments on commit 856c2fe

Please sign in to comment.