Skip to content

Commit 471ef05

Browse files
committed
chore: changed make commands to use dash
For consistency it now is the same as other commands to use dash instead of underscore.
1 parent 0336bf3 commit 471ef05

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/test-frontend.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ jobs:
3232
API_URL="https://prod.packit.dev/api" make transpile-prod
3333
3434
- name: Run Vitest
35-
run: make test_frontend_coverage
35+
run: make test-frontend-coverage

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,13 +58,13 @@ check:
5858
test_image: files/ansible/install-deps.yaml files/ansible/recipe-tests.yaml
5959
$(CONTAINER_ENGINE) build --rm -t $(TEST_IMAGE) -f Dockerfile.tests .
6060

61-
test_frontend:
61+
test-frontend:
6262
cd frontend && pnpm run test
6363

64-
test_frontend_coverage:
64+
test-frontend-coverage:
6565
cd frontend && pnpm run coverage
6666

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

0 commit comments

Comments
 (0)