We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be51fe0 commit 5105834Copy full SHA for 5105834
.github/workflows/nodejs.yml
@@ -28,7 +28,7 @@ jobs:
28
with:
29
node-version: ${{ env.NODE_VERSION }}
30
- name: Fix node-gyp and Python
31
- run: python3 -m pip install packaging setuptools
+ run: python3 -m pip install packaging setuptools --break-system-packages || python3 -m pip install packaging setuptools
32
- name: Get yarn cache directory path
33
id: yarn-cache-dir-path
34
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
test/index.ts
@@ -33,7 +33,7 @@ test.before(async () => {
executablePath: pathToBinary
});
35
await app.firstWindow();
36
- await new Promise((resolve) => setTimeout(resolve, 5000));
+ await new Promise((resolve) => setTimeout(resolve, 10000));
37
38
39
test.after(async () => {
0 commit comments