No. 130 means the run was cancelled — Ctrl-C, a cancel from the server or the web UI, or the process being killed. It is not a test result, and filing it as a defect against the suite will waste somebody's morning.
In CI it is nearly always one of: the job hit its timeout, the workflow was cancelled because a newer commit superseded it, or the agent was reclaimed.
The exit code is recorded in run.json alongside finishedAt, so you can tell a cancelled run from a completed one after the fact without reading the log. The whole set is worth putting in your triage rules: 0 passed, 1 failures, 2 configuration or usage, 3 lint errors, 130 cancelled — they are all listed on Reference → Exit codes. Only 1 is a defect candidate.