Skip to content

Commit 02b2c02

Browse files
Add sonar, update makefile
1 parent feb973f commit 02b2c02

File tree

4 files changed

+963
-2
lines changed

4 files changed

+963
-2
lines changed

Makefile

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ build:
1717
lint:
1818
npm run lint
1919

20+
.PHONY: test
21+
test:
22+
npm run test
23+
2024
.PHONY: test-unit
2125
test-unit:
2226
npm run test
@@ -37,4 +41,8 @@ endif
3741
rm -rf $(tmpdir)
3842

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

0 commit comments

Comments
 (0)