Skip to content

Commit a08edba

Browse files
committed
Continue to try fix the doc server not building
1 parent a2b03d9 commit a08edba

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/pull-request.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,11 @@ jobs:
4040
uses: ./.github/actions/src/info
4141

4242
- name: Echo Information about docserver
43+
if: ${{ !steps.info.outputs.docserver.changes }}
4344
run: echo ${{ steps.info.outputs.docserver }}
4445

4546
- name: Echo Information about devserver
47+
if: ${{ !steps.info.outputs.docserver.changes }}
4648
run: echo ${{ steps.info.outputs.devserver }}
4749

4850
outputs:

lib/buildtools/src/testing/utils.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,6 @@ export async function getTestConfiguration(directory: string, watch: boolean): P
9999
const type = typeStr as 'bundle' | 'tab';
100100
return [type, directory];
101101
} catch (error) {
102-
console.log('No package.json found in', directory);
103102
if (!isNodeError(error) || error.code !== 'ENOENT') throw error;
104103
const parentDir = pathlib.resolve(directory, '..');
105104
return findPackageJson(parentDir);

0 commit comments

Comments
 (0)