File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -32,22 +32,24 @@ jobs:
32
32
- name : Remove NPM workspaces
33
33
run : rm package.json && rm package-lock.json
34
34
35
+ # Not linting or testing because some of those tools require the
36
+ # workspace dependencies. eg. eslint and its plugins.
35
37
- name : Build signalling using published packages only
36
38
if : always()
37
39
working-directory : Signalling
38
- run : npm install && npm run build && npm run lint
40
+ run : npm install && npm run build
39
41
- name : Build Wilbur using published packages only
40
42
if : always()
41
43
working-directory : SignallingWebServer
42
- run : npm install && npm run build && npm run lint
44
+ run : npm install && npm run build
43
45
- name : Build Frontend/library using published packages only
44
46
if : always()
45
47
working-directory : Frontend/library
46
- run : npm install && npm run build && npm run lint && npm run test
48
+ run : npm install && npm run build
47
49
- name : Build Frontend/ui-library using published packages only
48
50
if : always()
49
51
working-directory : Frontend/ui-library
50
- run : npm install && npm run build && npm run lint
52
+ run : npm install && npm run build
51
53
- name : Build Frontend/implementations/typescript using published packages only
52
54
if : always()
53
55
working-directory : Frontend/implementations/typescript
You can’t perform that action at this time.
0 commit comments