Skip to content

rolled bacxk eslint version to keep supporting old node versions #219

rolled bacxk eslint version to keep supporting old node versions

rolled bacxk eslint version to keep supporting old node versions #219

Triggered via push September 5, 2025 23:18
Status Failure
Total duration 4m 2s
Artifacts

testing.yml

on: push
Matrix: test-nodejs
Matrix: test-rust
Matrix: lint-rust
Matrix: coverage-nodejs
Matrix: coverage-rust
Matrix: coverage-finish
Fit to window
Zoom out
Zoom in

Annotations

31 errors, 39 warnings, and 7 notices
test-nodejs (ubuntu-latest, 16)
Process completed with exit code 1.
test-nodejs (ubuntu-latest, 12)
Process completed with exit code 1.
test-nodejs (ubuntu-latest, 12)
The strategy configuration was canceled because "test-nodejs.ubuntu-latest_16" failed
test-nodejs (ubuntu-latest, 18)
The operation was canceled.
test-nodejs (ubuntu-latest, 18)
The strategy configuration was canceled because "test-nodejs.ubuntu-latest_16" failed
test-nodejs (windows-latest, 12)
The operation was canceled.
test-nodejs (windows-latest, 12)
The strategy configuration was canceled because "test-nodejs.ubuntu-latest_16" failed
test-nodejs (windows-latest, 14)
The operation was canceled.
test-nodejs (windows-latest, 18)
The operation was canceled.
test-nodejs (windows-latest, 14)
The strategy configuration was canceled because "test-nodejs.ubuntu-latest_16" failed
test-nodejs (windows-latest, 18)
The strategy configuration was canceled because "test-nodejs.ubuntu-latest_16" failed
test-nodejs (ubuntu-latest, 14)
The operation was canceled.
test-nodejs (ubuntu-latest, 14)
The strategy configuration was canceled because "test-nodejs.ubuntu-latest_16" failed
test-nodejs (windows-latest, 20)
The operation was canceled.
test-nodejs (windows-latest, 20)
The strategy configuration was canceled because "test-nodejs.ubuntu-latest_16" failed
test-nodejs (windows-latest, 16)
The operation was canceled.
test-nodejs (windows-latest, 16)
The strategy configuration was canceled because "test-nodejs.ubuntu-latest_16" failed
test-nodejs (windows-latest, 22)
The operation was canceled.
test-nodejs (windows-latest, 22)
The strategy configuration was canceled because "test-nodejs.ubuntu-latest_16" failed
test-nodejs (macOS-latest, 16)
The operation was canceled.
test-nodejs (macOS-latest, 16)
The strategy configuration was canceled because "test-nodejs.ubuntu-latest_16" failed
test-nodejs (ubuntu-latest, 22)
The operation was canceled.
test-nodejs (ubuntu-latest, 22)
The strategy configuration was canceled because "test-nodejs.ubuntu-latest_16" failed
test-nodejs (macOS-latest, 22)
The operation was canceled.
test-nodejs (macOS-latest, 22)
The strategy configuration was canceled because "test-nodejs.ubuntu-latest_16" failed
test-nodejs (macOS-latest, 18)
The operation was canceled.
test-nodejs (macOS-latest, 18)
The strategy configuration was canceled because "test-nodejs.ubuntu-latest_16" failed
test-nodejs (ubuntu-latest, 20)
The operation was canceled.
test-nodejs (ubuntu-latest, 20)
The strategy configuration was canceled because "test-nodejs.ubuntu-latest_16" failed
test-nodejs (macOS-latest, 20)
The operation was canceled.
test-nodejs (macOS-latest, 20)
The strategy configuration was canceled because "test-nodejs.ubuntu-latest_16" failed
test-nodejs (ubuntu-latest, 16)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
test-nodejs (ubuntu-latest, 12)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
test-nodejs (ubuntu-latest, 18)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
test-nodejs (windows-latest, 18)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
test-nodejs (ubuntu-latest, 14)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
test-nodejs (windows-latest, 20)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
test-nodejs (macOS-latest, 16)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
test-nodejs (ubuntu-latest, 22)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
test-nodejs (macOS-latest, 22)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
test-nodejs (macOS-latest, 18)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
test-nodejs (ubuntu-latest, 20)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
this multiplication by -1 can be written more succinctly: src/gradient.rs#L107
warning: this multiplication by -1 can be written more succinctly --> src/gradient.rs:107:19 | 107 | long_distance = -1.0 * (point_a - point_b); | ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using: `-(point_a - point_b)` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#neg_multiply = note: `#[warn(clippy::neg_multiply)]` on by default
doc quote line without `>` marker: src/config.rs#L80
warning: doc quote line without `>` marker --> src/config.rs:80:5 | 80 | /// Colors also respect both `NO_COLOR` and `FORCE_COLOR` env vars. | ^ | = help: if this not intended to be a quote at all, escape it with `\>` = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_lazy_continuation help: add markers to start of line | 80 | /// > Colors also respect both `NO_COLOR` and `FORCE_COLOR` env vars. | +
doc quote line without `>` marker: src/config.rs#L47
warning: doc quote line without `>` marker --> src/config.rs:47:5 | 47 | /// Colors also respect both `NO_COLOR` and `FORCE_COLOR` env vars. | ^ | = help: if this not intended to be a quote at all, escape it with `\>` = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_lazy_continuation = note: `#[warn(clippy::doc_lazy_continuation)]` on by default help: add markers to start of line | 47 | /// > Colors also respect both `NO_COLOR` and `FORCE_COLOR` env vars. | +
this multiplication by -1 can be written more succinctly: src/gradient.rs#L107
warning: this multiplication by -1 can be written more succinctly --> src/gradient.rs:107:19 | 107 | long_distance = -1.0 * (point_a - point_b); | ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using: `-(point_a - point_b)` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#neg_multiply = note: `#[warn(clippy::neg_multiply)]` on by default
doc quote line without `>` marker: src/config.rs#L80
warning: doc quote line without `>` marker --> src/config.rs:80:5 | 80 | /// Colors also respect both `NO_COLOR` and `FORCE_COLOR` env vars. | ^ | = help: if this not intended to be a quote at all, escape it with `\>` = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_lazy_continuation help: add markers to start of line | 80 | /// > Colors also respect both `NO_COLOR` and `FORCE_COLOR` env vars. | +
doc quote line without `>` marker: src/config.rs#L47
warning: doc quote line without `>` marker --> src/config.rs:47:5 | 47 | /// Colors also respect both `NO_COLOR` and `FORCE_COLOR` env vars. | ^ | = help: if this not intended to be a quote at all, escape it with `\>` = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_lazy_continuation = note: `#[warn(clippy::doc_lazy_continuation)]` on by default help: add markers to start of line | 47 | /// > Colors also respect both `NO_COLOR` and `FORCE_COLOR` env vars. | +
lint-rust (ubuntu-latest)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
lint-rust (ubuntu-latest)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
lint-rust (ubuntu-latest)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
lint-rust (ubuntu-latest)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
lint-rust (ubuntu-latest)
Unexpected input(s) 'args', valid inputs are ['toolchain', 'target', 'default', 'override', 'profile', 'components']
test-nodejs (macOS-latest, 20)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
test-rust (macos-latest)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
test-rust (macos-latest)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
test-rust (macos-latest)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
test-rust (macos-latest)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
test-rust (ubuntu-latest)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
test-rust (ubuntu-latest)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
test-rust (ubuntu-latest)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
test-rust (ubuntu-latest)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
test-rust (windows-latest)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
test-rust (windows-latest)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
test-rust (windows-latest)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
test-rust (windows-latest)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
coverage-rust (ubuntu-latest)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
coverage-rust (ubuntu-latest)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
coverage-rust (ubuntu-latest)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
coverage-rust (ubuntu-latest)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
test-nodejs (windows-latest, 12)
The windows-latest label will migrate from Windows Server 2022 to Windows Server 2025 beginning September 2, 2025. For more information see https://github.com/actions/runner-images/issues/12677
test-nodejs (windows-latest, 14)
The windows-latest label will migrate from Windows Server 2022 to Windows Server 2025 beginning September 2, 2025. For more information see https://github.com/actions/runner-images/issues/12677
test-nodejs (windows-latest, 18)
The windows-latest label will migrate from Windows Server 2022 to Windows Server 2025 beginning September 2, 2025. For more information see https://github.com/actions/runner-images/issues/12677
test-nodejs (windows-latest, 20)
The windows-latest label will migrate from Windows Server 2022 to Windows Server 2025 beginning September 2, 2025. For more information see https://github.com/actions/runner-images/issues/12677
test-nodejs (windows-latest, 16)
The windows-latest label will migrate from Windows Server 2022 to Windows Server 2025 beginning September 2, 2025. For more information see https://github.com/actions/runner-images/issues/12677
test-nodejs (windows-latest, 22)
The windows-latest label will migrate from Windows Server 2022 to Windows Server 2025 beginning September 2, 2025. For more information see https://github.com/actions/runner-images/issues/12677
test-rust (windows-latest)
The windows-latest label will migrate from Windows Server 2022 to Windows Server 2025 beginning September 2, 2025. For more information see https://github.com/actions/runner-images/issues/12677