Skip to content

Commit a98bf33

Browse files
committed
Removing linting and testing from public dep action
1 parent e9db272 commit a98bf33

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/healthcheck-libs-with-public-deps.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,22 +32,24 @@ jobs:
3232
- name: Remove NPM workspaces
3333
run: rm package.json && rm package-lock.json
3434

35+
# Not linting or testing because some of those tools require the
36+
# workspace dependencies. eg. eslint and its plugins.
3537
- name: Build signalling using published packages only
3638
if: always()
3739
working-directory: Signalling
38-
run: npm install && npm run build && npm run lint
40+
run: npm install && npm run build
3941
- name: Build Wilbur using published packages only
4042
if: always()
4143
working-directory: SignallingWebServer
42-
run: npm install && npm run build && npm run lint
44+
run: npm install && npm run build
4345
- name: Build Frontend/library using published packages only
4446
if: always()
4547
working-directory: Frontend/library
46-
run: npm install && npm run build && npm run lint && npm run test
48+
run: npm install && npm run build
4749
- name: Build Frontend/ui-library using published packages only
4850
if: always()
4951
working-directory: Frontend/ui-library
50-
run: npm install && npm run build && npm run lint
52+
run: npm install && npm run build
5153
- name: Build Frontend/implementations/typescript using published packages only
5254
if: always()
5355
working-directory: Frontend/implementations/typescript

0 commit comments

Comments
 (0)