We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ff548c commit 89702bdCopy full SHA for 89702bd
.github/workflows/ci.yml
@@ -27,6 +27,12 @@ jobs:
27
- name: 'Allow attaching to running Linux processes'
28
run: sudo sysctl kernel.yama.ptrace_scope=0
29
30
- - run: npm test
+ # Frida can become unresponseive, seemingly only in CI, so we need to add
31
+ # retries here to make CI testing relatively reliable:
32
+ - uses: nick-fields/retry@v3
33
+ with:
34
+ timeout_seconds: 300
35
+ max_attempts: 3
36
+ command: npm test
37
env:
38
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments