Skip to content

Commit bc358c6

Browse files
Merge pull request #51 from companieshouse/feature/BI-5981_pr_analysis_for_api_node_sdk
Feature/bi 5981 pr analysis for api node sdk
2 parents feb973f + 7cddc6e commit bc358c6

File tree

7 files changed

+1050
-89
lines changed

7 files changed

+1050
-89
lines changed

Makefile

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,17 @@ clean:
1111
.PHONY: build
1212
build:
1313
npm i
14+
npm run lint
1415
npm run build
1516

1617
.PHONY: lint
1718
lint:
1819
npm run lint
1920

21+
.PHONY: test
22+
test:
23+
npm run test
24+
2025
.PHONY: test-unit
2126
test-unit:
2227
npm run test
@@ -37,4 +42,8 @@ endif
3742
rm -rf $(tmpdir)
3843

3944
.PHONY: dist
40-
dist: lint test-unit clean package
45+
dist: lint test-unit clean package
46+
47+
.PHONY: sonar
48+
sonar:
49+
npm run analyse-code

0 commit comments

Comments
 (0)