File tree Expand file tree Collapse file tree 1 file changed +15
-3
lines changed Expand file tree Collapse file tree 1 file changed +15
-3
lines changed Original file line number Diff line number Diff line change @@ -18,10 +18,14 @@ jobs:
18
18
version : 2
19
19
check-types :
20
20
name : Check Types
21
- timeout-minutes : 5
21
+ timeout-minutes : 10
22
22
runs-on : ubuntu-latest
23
23
steps :
24
24
- uses : actions/checkout@v3
25
+ - name : Use Node.js
26
+ uses : actions/setup-node@v4
27
+ with :
28
+ cache : npm
25
29
- run : npm ci
26
30
- name : Build Types
27
31
run : npm run build:types
@@ -31,19 +35,27 @@ jobs:
31
35
run : npm run lint:types
32
36
check-docs :
33
37
name : Check Docs
34
- timeout-minutes : 5
38
+ timeout-minutes : 10
35
39
runs-on : ubuntu-latest
36
40
steps :
37
41
- uses : actions/checkout@v3
42
+ - name : Use Node.js
43
+ uses : actions/setup-node@v4
44
+ with :
45
+ cache : npm
38
46
- run : npm ci
39
47
- name : Check Docs
40
48
run : npm run docs
41
49
check-circular :
42
50
name : Check Circular Dependencies
43
- timeout-minutes : 5
51
+ timeout-minutes : 10
44
52
runs-on : ubuntu-latest
45
53
steps :
46
54
- uses : actions/checkout@v3
55
+ - name : Use Node.js
56
+ uses : actions/setup-node@v4
57
+ with :
58
+ cache : npm
47
59
- run : npm ci
48
60
- name : Circular Dependencies
49
61
run : npm run madge:circular
You can’t perform that action at this time.
0 commit comments