forked from serenity-js/serenity-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
59 lines (46 loc) · 778 Bytes
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# all
# libs
# site
# @serenity-js
# @integration
# @documentation
# @examples
BOOTSTRAP_SCOPE=all
# all
# libs
# @serenity-js
# @integration
# @documentation
# @examples
COMPILE_SCOPE=all
# all
# cucumber
# jasmine
# mocha
# protractor
# webdriverio
# webdriverio-web
INTEGRATION_SCOPE=all
.PHONY: all install clean lint test compile integration-test verify report site
all: install clean compile
reinstall:
npm install
npm run lerna:bootstrap:all
install:
npm ci
npm run lerna:bootstrap:$(BOOTSTRAP_SCOPE)
clean:
npm run clean
lint:
npm run lint
test:
npm test
compile:
npm run compile:$(COMPILE_SCOPE)
integration-test:
npm run integration-test:$(INTEGRATION_SCOPE)
verify: lint compile test integration-test
report:
npm run report
site:
npm run site