File tree 1 file changed +6
-4
lines changed
1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -96,15 +96,17 @@ jobs:
96
96
runs-on : ubuntu-20.04
97
97
timeout-minutes : 10
98
98
needs : setup
99
+ env :
100
+ matrix : ${{ fromJSON(needs.setup.outputs.SPECS_MATRIX) }}
99
101
steps :
100
102
- uses : actions/checkout@v2
101
103
102
104
- name : Cache bundled specs
103
105
id : cache
104
106
uses : actions/cache@v3
105
107
with :
106
- key : ${{ fromJSON(needs.setup.outputs.SPECS_MATRIX) .cacheKey }}
107
- path : ${{ fromJSON(needs.setup.outputs.SPECS_MATRIX) .bundledPath }}
108
+ key : ${{ matrix .cacheKey }}
109
+ path : ${{ matrix .bundledPath }}
108
110
109
111
- name : Setup
110
112
if : ${{ steps.cache.outputs.cache-hit != 'true' }}
@@ -114,14 +116,14 @@ jobs:
114
116
115
117
- name : Building specs
116
118
if : ${{ steps.cache.outputs.cache-hit != 'true' }}
117
- run : yarn cli build specs ${{ fromJSON(needs.setup.outputs.SPECS_MATRIX) .toRun }}
119
+ run : yarn cli build specs ${{ matrix .toRun }}
118
120
119
121
- name : Store bundled specs
120
122
uses : actions/upload-artifact@v3
121
123
with :
122
124
if-no-files-found : error
123
125
name : specs
124
- path : ${{ fromJSON(needs.setup.outputs.SPECS_MATRIX) .bundledPath }}
126
+ path : ${{ matrix .bundledPath }}
125
127
126
128
client_javascript_utils :
127
129
timeout-minutes : 10
You can’t perform that action at this time.
0 commit comments