We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1d992a commit fb1c2e6Copy full SHA for fb1c2e6
1 file changed
.github/workflows/deploy.yml
@@ -13,6 +13,8 @@ on:
13
- 'main'
14
jobs:
15
setup:
16
+ name: 🔧 Setup
17
+ timeout-minutes: 15
18
strategy:
19
matrix:
20
os: [ubuntu-latest, windows-latest, macos-latest]
@@ -24,7 +26,7 @@ jobs:
24
26
- name: ⎔ Setup node
25
27
uses: actions/setup-node@v4
28
with:
- node-version: 20
29
+ node-version: 24
30
31
- name: ▶️ Run setup script
32
run: npm run setup
@@ -37,6 +39,7 @@ jobs:
37
39
38
40
deploy:
41
name: 🚀 Deploy
42
+ timeout-minutes: 10
43
runs-on: ubuntu-latest
44
# only deploy main branch on pushes
45
if: ${{ github.ref == 'refs/heads/main' && github.event_name == 'push' }}
0 commit comments