Skip to content

Commit befd34e

Browse files
committed
[TASK] add timeout to github actions
1 parent 5f5883d commit befd34e

File tree

4 files changed

+3
-9
lines changed

4 files changed

+3
-9
lines changed

.editorconfig

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,6 @@ indent_style = tab
2525
[*.{yaml,yml}]
2626
indent_size = 2
2727

28-
# ReST-Files
29-
[*.rst]
30-
indent_size = 3
31-
32-
# SQL files
33-
[*.sql]
34-
indent_style = tab
35-
indent_size = 2
36-
3728
# HTML files
3829
[*.html]
3930
indent_size = 2

.github/workflows/git-commit.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ jobs:
99
check-commit-message:
1010
name: Check Commit Message
1111
runs-on: ubuntu-latest
12+
timeout-minutes: 30
1213

1314
steps:
1415
- name: Check Commit Type

.github/workflows/publish-npm.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77
jobs:
88
publish-npm:
99
runs-on: ubuntu-latest
10+
timeout-minutes: 30
1011
steps:
1112
- uses: actions/checkout@v3
1213
- uses: actions/setup-node@v3

.github/workflows/test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ jobs:
77
build:
88
name: Node
99
runs-on: ubuntu-latest
10+
timeout-minutes: 30
1011
strategy:
1112
matrix:
1213
node: [16, 18]

0 commit comments

Comments
 (0)