howmuch/web/Makefile
Muyao CHEN e1ca08db3a
All checks were successful
Build and test / Build (push) Successful in 1m55s
fix(ci): install npm
2024-10-08 23:43:05 +02:00

23 lines
373 B
Makefile

.PHONY: all
all: add-copyright format lint build test
.PHONY: build
build:
@npm install && npm run build
.PHONY: format
format: # format code.
@npm run format
.PHONY: lint
lint:
@npm run lint
.PHONY: test
test:
@npm run test:unit run
.PHONY: add-copyright
add-copyright: # add license to file headers.
@addlicense -v -f ../LICENSE ./src --skip-files=database.yml