Skip to content

Commit

Permalink
Fix GH actions & Increase ava timeout
Browse files Browse the repository at this point in the history
Signed-off-by: Philip Peterson <[email protected]>
  • Loading branch information
philip-peterson committed Nov 11, 2024
1 parent be51fe0 commit fe5b15f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
with:
node-version: ${{ env.NODE_VERSION }}
- name: Fix node-gyp and Python
run: python3 -m pip install packaging setuptools
run: python3 -m pip install packaging setuptools --break-system-packages || python3 -m pip install packaging setuptools
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
Expand Down
2 changes: 1 addition & 1 deletion test/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ test.before(async () => {
executablePath: pathToBinary
});
await app.firstWindow();
await new Promise((resolve) => setTimeout(resolve, 5000));
await new Promise((resolve) => setTimeout(resolve, 30000));
});

test.after(async () => {
Expand Down

0 comments on commit fe5b15f

Please sign in to comment.