File tree Expand file tree Collapse file tree 1 file changed +13
-8
lines changed Expand file tree Collapse file tree 1 file changed +13
-8
lines changed Original file line number Diff line number Diff line change @@ -98,10 +98,20 @@ jobs:
98
98
RAILS_ENV : test
99
99
run : bin/rspec
100
100
101
- - name : Upload coverage reports to Codecov
102
-
101
+ - name : Upload coverage results
102
+ uses : actions/upload-artifact@v4
103
+ if : always()
103
104
with :
104
- token : ${{ secrets.CODECOV_TOKEN }}
105
+ name : coverage-report
106
+ path : coverage
107
+
108
+ - name : Keep screenshots from failed system tests
109
+ uses : actions/upload-artifact@v4
110
+ if : failure()
111
+ with :
112
+ name : screenshots
113
+ path : ${{ github.workspace }}/tmp/capybara
114
+ if-no-files-found : ignore
105
115
106
116
setup :
107
117
name : Setup
@@ -183,11 +193,6 @@ jobs:
183
193
run : |
184
194
npm run test -- --watch=false
185
195
186
- - name : Upload coverage reports to Codecov
187
-
188
- with :
189
- token : ${{ secrets.CODECOV_TOKEN }}
190
-
191
196
assets :
192
197
name : Assets
193
198
runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments