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