Skip to content

Commit 5105834

Browse files
Fix GH actions & Increase ava timeout
Signed-off-by: Philip Peterson <[email protected]>
1 parent be51fe0 commit 5105834

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/nodejs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
with:
2929
node-version: ${{ env.NODE_VERSION }}
3030
- name: Fix node-gyp and Python
31-
run: python3 -m pip install packaging setuptools
31+
run: python3 -m pip install packaging setuptools --break-system-packages || python3 -m pip install packaging setuptools
3232
- name: Get yarn cache directory path
3333
id: yarn-cache-dir-path
3434
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT

test/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ test.before(async () => {
3333
executablePath: pathToBinary
3434
});
3535
await app.firstWindow();
36-
await new Promise((resolve) => setTimeout(resolve, 5000));
36+
await new Promise((resolve) => setTimeout(resolve, 10000));
3737
});
3838

3939
test.after(async () => {

0 commit comments

Comments
 (0)