File tree Expand file tree Collapse file tree 3 files changed +6
-42
lines changed Expand file tree Collapse file tree 3 files changed +6
-42
lines changed Original file line number Diff line number Diff line change @@ -34,23 +34,14 @@ jobs:
34
34
cache : ' yarn'
35
35
cache-dependency-path : yarn.lock
36
36
37
- - name : Turbo cache
38
- id : turbo-cache
39
- uses : actions/cache@v3
40
- with :
41
- path : .turbo
42
- key : turbo-${{ github.job }}-${{ github.ref_name }}-${{ github.sha }}
43
- restore-keys : |
44
- turbo-${{ github.job }}-${{ github.ref_name }}-
45
-
46
37
- name : Install dependencies
47
38
run : yarn --immutable
48
39
49
40
- name : Build dependencies
50
- run : yarn build --cache-dir=".turbo"
41
+ run : yarn build
51
42
52
43
- name : Build docs
53
- run : yarn docs --cache-dir=".turbo"
44
+ run : yarn docs
54
45
55
46
- name : Upload docgen artifacts
56
47
uses : actions/upload-artifact@v3
@@ -95,20 +86,11 @@ jobs:
95
86
cache : ' yarn'
96
87
cache-dependency-path : yarn.lock
97
88
98
- - name : Turbo cache
99
- id : turbo-cache
100
- uses : actions/cache@v3
101
- with :
102
- path : .turbo
103
- key : turbo-${{ github.job }}-${{ github.ref_name }}-${{ github.sha }}
104
- restore-keys : |
105
- turbo-${{ github.job }}-${{ github.ref_name }}-
106
-
107
89
- name : Install dependencies
108
90
run : yarn --immutable
109
91
110
92
- name : Build actions
111
- run : yarn build --cache-dir=".turbo"
93
+ run : yarn build
112
94
113
95
- name : Download docgen artifacts
114
96
uses : actions/download-artifact@v3
Original file line number Diff line number Diff line change 36
36
cache : ' yarn'
37
37
cache-dependency-path : yarn.lock
38
38
39
- - name : Turbo cache
40
- id : turbo-cache
41
- uses : actions/cache@v3
42
- with :
43
- path : .turbo
44
- key : turbo-${{ github.job }}-${{ github.ref_name }}-${{ github.sha }}
45
- restore-keys : |
46
- turbo-${{ github.job }}-${{ github.ref_name }}-
47
-
48
39
- name : Check previous released version
49
40
id : pre-release
50
41
run : |
58
49
59
50
- name : Build dependencies
60
51
if : steps.pre-release.outputs.release == 'true'
61
- run : yarn build --cache-dir=".turbo"
52
+ run : yarn build
62
53
63
54
- name : Deprecate old versions
64
55
if : steps.pre-release.outputs.release == 'true'
Original file line number Diff line number Diff line change @@ -15,20 +15,11 @@ jobs:
15
15
cache : ' yarn'
16
16
cache-dependency-path : yarn.lock
17
17
18
- - name : Turbo cache
19
- id : turbo-cache
20
- uses : actions/cache@v3
21
- with :
22
- path : .turbo
23
- key : turbo-${{ github.job }}-${{ github.ref_name }}-${{ github.sha }}
24
- restore-keys : |
25
- turbo-${{ github.job }}-${{ github.ref_name }}-
26
-
27
18
- name : Install dependencies
28
19
run : yarn --immutable
29
20
30
21
- name : ESLint
31
- run : yarn lint --cache-dir=".turbo"
22
+ run : yarn lint
32
23
33
24
- name : Tests
34
25
run : yarn test
38
29
if : github.repository_owner == 'discordjs'
39
30
40
31
- name : Build
41
- run : yarn build --cache-dir=".turbo"
32
+ run : yarn build
You can’t perform that action at this time.
0 commit comments