Skip to content

Commit bbe6cbb

Browse files
authored
Updating test workflow and makefile target (#365)
# Description This runs js linting as part of CI tests. ## Changes Provide a bullet point list of noteworthy changes in this Pull Request: - Added `js-lint` to `make test` - changed command from `go test ./...` to `make test`
1 parent 12930d4 commit bbe6cbb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/run-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ jobs:
1717
go-version: "1.23"
1818

1919
- name: Run tests
20-
run: go test ./...
20+
run: make test

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ shell:
106106
validate: fmtcheck vet
107107

108108
.PHONY: test
109-
test:
109+
test: js-lint
110110
@go test ./...
111111

112112
.PHONY: coverage

0 commit comments

Comments
 (0)