-
Notifications
You must be signed in to change notification settings - Fork 30
/
Makefile
36 lines (28 loc) · 1.23 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
.PHONY: setup
.PHONY: ci cd
PROJECT_NAME:=bcrs-shared-components-web
DOCKER_NAME:=bcrs-shared-components-web
#################################################################################
# COMMANDS -- Setup
# expects the terminal to be openshift login
# expects export OPENSHIFT_REPOSITORY=""
#################################################################################
setup: ## Clean and Install npm dependencies
npm ci
#################################################################################
# COMMANDS - CI #
#################################################################################
ci: lint test
lint: ## Run linting of code.
npm run lint:nofix
test: ## Unit testing
npm run test:unit
storybook:
npm run build-storybook
#################################################################################
# Self Documenting Commands #
#################################################################################
.PHONY: help
.DEFAULT_GOAL := help
help:
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'