We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7459444 commit 43637b1Copy full SHA for 43637b1
.github/workflows/build.yml
@@ -22,6 +22,7 @@ run-name: ${{ github.event_name == 'workflow_dispatch' && format('Release - {0}'
22
jobs:
23
lint:
24
runs-on: ubuntu-24.04
25
+ timeout-minutes: 30 # Extend timeout to 30 minutes (default is 6 hours for a job)
26
steps:
27
- uses: actions/checkout@v4
28
- run: sudo apt-get update
@@ -33,6 +34,7 @@ jobs:
33
34
- run: npm ci --ignore-scripts
35
- run: npm run build:dist
36
- run: npm run lint
37
+ timeout-minutes: 20 # Give the lint step more time
38
39
prebuild-mac-win:
40
strategy:
0 commit comments