We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68ab71d commit 4bbaf22Copy full SHA for 4bbaf22
.github/workflows/ci-dev.yaml
@@ -55,7 +55,7 @@ jobs:
55
name: Node.js test
56
needs: affected
57
runs-on: ubuntu-latest
58
- timeout-minutes: ${{ fromJson(needs.affected.outputs.nodejs-setups)[matrix.path].timeout }}
+ timeout-minutes: 120
59
permissions:
60
id-token: write # needed for google-github-actions/auth
61
strategy:
@@ -86,4 +86,6 @@ jobs:
86
secrets: ${{ join(fromJson(env.CI_SETUP).secrets) }}
87
export_to_environment: true
88
- name: 🛠️ Test ${{ matrix.path }}
89
- run: make test dir=${{ matrix.path }}
+ run: |
90
+ timeout ${{ fromJson(env.CI_SETUP).timeout }} \
91
+ make test dir=${{ matrix.path }}
0 commit comments