mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-13 04:28:41 -09:00
Fix GH actions & Increase ava timeout
Signed-off-by: Philip Peterson <philip-peterson@users.noreply.github.com>
This commit is contained in:
parent
cfee97ce76
commit
d066333d96
2 changed files with 2 additions and 2 deletions
2
.github/workflows/nodejs.yml
vendored
2
.github/workflows/nodejs.yml
vendored
|
|
@ -29,7 +29,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
|
||||
|
|
|
|||
|
|
@ -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 () => {
|
||||
|
|
|
|||
Loading…
Reference in a new issue