File tree 3 files changed +30
-7
lines changed
3 files changed +30
-7
lines changed Original file line number Diff line number Diff line change 14
14
docs :
15
15
runs-on : ubuntu-latest
16
16
steps :
17
- - uses : actions/checkout@v1
17
+ - uses : actions/checkout@v2
18
18
- name : Set up Python
19
19
uses : actions/setup-python@v1
20
20
with :
24
24
run : |
25
25
echo ::set-env name=SOURCE_BRANCH::${GITHUB_REF#refs/heads/}
26
26
echo ::set-env name=SOURCE_TAG::${GITHUB_REF#refs/tags/}
27
+
28
+ run : make dev-docs
27
29
- name : Build docs website
28
30
run : make build-docs-website
29
31
- name : Deploy all docs
Original file line number Diff line number Diff line change 1
1
2
2
dev-docs :
3
- cd docs && npm install
3
+ cd docs && yarn install
4
4
5
5
build-docs :
6
6
@$(MAKE ) build-docs-website
7
7
8
8
build-docs-website : dev-docs
9
9
mkdir -p dist
10
- cd docs && npm run build
10
+ cd docs && yarn build
11
11
cp -R docs/public/* dist/
12
12
13
13
docs-local :
14
- cd docs && npm run start
14
+ cd docs && yarn start
15
15
16
16
test :
17
17
mvn test
Original file line number Diff line number Diff line change 51
51
52
52
<dependencies >
53
53
<dependency >
54
- <groupId >junit</groupId >
55
- <artifactId >junit</artifactId >
56
- <version >4.10</version >
54
+ <groupId >org.junit.jupiter</groupId >
55
+ <artifactId >junit-jupiter-api</artifactId >
56
+ <version >5.6.2</version >
57
+ <scope >test</scope >
58
+ </dependency >
59
+ <dependency >
60
+ <groupId >org.junit.jupiter</groupId >
61
+ <artifactId >junit-jupiter-engine</artifactId >
62
+ <version >5.6.2</version >
57
63
<scope >test</scope >
58
64
</dependency >
59
65
</dependencies >
63
69
<id >dev</id >
64
70
<build >
65
71
<plugins >
72
+ <plugin >
73
+ <groupId >org.apache.maven.plugins</groupId >
74
+ <artifactId >maven-surefire-plugin</artifactId >
75
+ <version >2.22.2</version >
76
+ </plugin >
66
77
<plugin >
67
78
<groupId >org.jacoco</groupId >
68
79
<artifactId >jacoco-maven-plugin</artifactId >
113
124
</distributionManagement >
114
125
<build >
115
126
<plugins >
127
+ <plugin >
128
+ <groupId >org.apache.maven.plugins</groupId >
129
+ <artifactId >maven-surefire-plugin</artifactId >
130
+ <version >2.22.1</version >
131
+ </plugin >
116
132
<plugin >
117
133
<groupId >org.jacoco</groupId >
118
134
<artifactId >jacoco-maven-plugin</artifactId >
194
210
<id >release-maven</id >
195
211
<build >
196
212
<plugins >
213
+ <plugin >
214
+ <groupId >org.apache.maven.plugins</groupId >
215
+ <artifactId >maven-surefire-plugin</artifactId >
216
+ <version >2.22.1</version >
217
+ </plugin >
197
218
<plugin >
198
219
<groupId >org.jacoco</groupId >
199
220
<artifactId >jacoco-maven-plugin</artifactId >
You can’t perform that action at this time.
0 commit comments