File tree Expand file tree Collapse file tree 1 file changed +11
-5
lines changed Expand file tree Collapse file tree 1 file changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -25,17 +25,23 @@ jobs:
25
25
- name : Lint code
26
26
run : yarn lint
27
27
28
+ - name : Run unit tests
29
+ run : yarn test:unit
30
+
28
31
- name : Download Datashare for Debian
29
32
run : wget "https://github.com/ICIJ/datashare-installer/releases/download/${{ env.DATASHARE_VERSION }}/${{ env.DATASHARE_PACKAGE }}"
30
33
31
34
- name : Install Datashare
32
- run : sudo apt install -y ./${{ env.DATASHARE_PACKAGE }}
35
+ run : sudo apt install --no-install-recommends - y ./${{ env.DATASHARE_PACKAGE }} -no-install-recommends
33
36
34
37
- name : Run Datashare in background
35
- run : mkdir -p tmp && yarn run test:datashare &
36
-
37
- - name : Run all tests
38
- run : yarn test
38
+ run : mkdir -p tmp && yarn run test:datashare &
39
+
40
+ - name : Build package for e2e tests
41
+ run : yarn build && yarn test:pack
42
+
43
+ - name : Run e2e tests
44
+ run : yarn test:e2e
39
45
40
46
release :
41
47
runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments