Report more error types in the UI #1256
Labels
stale
theme/build-deploy-ux
type: feature
code contributing to the implementation of a feature and/or user facing functionality
We surface plugin errors in the UI ("plugins error statuses"), i.e. not only in the build logs. We should also show the following specific error types in the UI:
netlify.toml
configuration errorbuild.command
failedOne thing to consider: error statuses shown in the UI are currently plugin-related. The API endpoint
plugin_runs
asks for a pluginname
,version
and the event in which the error happened. This would not fit the errors above, so this would require either adding a new approach for those, or modifying the current approach, for both UI and the API.Implementation note: in Netlify Build, the logic to retrieve the
title
,summary
andtext
of error statuses (to send to the API) is not tied to plugins. It works for any error types (including the ones above), so we should re-use the same code we use for plugin error statuses.The text was updated successfully, but these errors were encountered: