Skip to content

Update all non-major dependencies #154

Update all non-major dependencies

Update all non-major dependencies #154

Triggered via push September 23, 2024 00:31
Status Failure
Total duration 28s
Artifacts

test.yml

on: push
collect coverage
17s
collect coverage
Matrix: test
Fit to window
Zoom out
Zoom in

Annotations

14 errors
source/configs/strict.unit.test.ts > strict > should match the snapshot: source/configs/strict.unit.test.ts#L6
Error: Snapshot `strict > should match the snapshot 1` mismatched - Expected + Received @@ -68,11 +68,11 @@ { "languageOptions": { "parser": { "meta": { "name": "typescript-eslint/parser", - "version": "8.5.0", + "version": "8.6.0", }, "parseForESLint": [Function], }, "sourceType": "module", }, @@ -819,11 +819,11 @@ }, }, }, "meta": { "name": "@typescript-eslint/eslint-plugin", - "version": "8.5.0", + "version": "8.6.0", }, "rules": { "adjacent-overload-signatures": { "create": [Function], "defaultOptions": [], @@ -5375,10 +5375,11 @@ "requiresTypeChecking": true, "url": "https://typescript-eslint.io/rules/no-misused-promises", }, "messages": { "conditional": "Expected non-Promise value in a boolean conditional.", + "predicate": "Expected a non-Promise value to be returned.", "spread": "Expected a non-Promise value to be spreaded in an object.", "voidReturnArgument": "Promise returned in function argument where a void return was expected.", "voidReturnAttribute": "Promise-returning function provided to attribute where a void return was expected.", "voidReturnInheritedMethod": "Promise-returning method provided where a void return was expected by extended/implemented type '{{ heritageTypeName }}'.", "voidReturnProperty": "Promise-returning function provided to property where a void return was expected.", @@ -7844,10 +7845,20 @@ }, "restrict-template-expressions": { "create": [Function], "defaultOptions": [ { + "allow": [ + { + "from": "lib", + "name": [ + "Error", + "URL", + "URLSearchParams", + ], + }, + ], "allowAny": true, "allowBoolean": true, "allowNullish": true, "allowNumber": true, "allowRegExp": true, @@ -7877,10 +7888,121 @@ }, "schema": [ { "additionalProperties": false, "properties": { + "allow": { + "description": "Types to allow in template expressions.", + "items": { + "oneOf": [ + { + "type": "string", + }, + { + "additionalProperties": false, + "properties": { + "from": { + "enum": [ + "file", + ], + "type": "string", + }, + "name": { + "oneOf": [ + { + "type": "string", + }, + { + "items": { + "type": "string", + }, + "minItems": 1, + "type": "array", + "uniqueItems": true, + }, + ], + }, + "path": { + "type": "string", +
source/configs/strict.unit.test.ts > strict > should include the js all config: source/configs/strict.unit.test.ts#L14
Error: Snapshot `strict > should include the js all config 1` mismatched - Expected + Received @@ -1,11 +1,11 @@ { "languageOptions": { "parser": { "meta": { "name": "typescript-eslint/parser", - "version": "8.5.0", + "version": "8.6.0", }, "parseForESLint": [Function], }, "sourceType": "module", }, @@ -752,11 +752,11 @@ }, }, }, "meta": { "name": "@typescript-eslint/eslint-plugin", - "version": "8.5.0", + "version": "8.6.0", }, "rules": { "adjacent-overload-signatures": { "create": [Function], "defaultOptions": [], @@ -5308,10 +5308,11 @@ "requiresTypeChecking": true, "url": "https://typescript-eslint.io/rules/no-misused-promises", }, "messages": { "conditional": "Expected non-Promise value in a boolean conditional.", + "predicate": "Expected a non-Promise value to be returned.", "spread": "Expected a non-Promise value to be spreaded in an object.", "voidReturnArgument": "Promise returned in function argument where a void return was expected.", "voidReturnAttribute": "Promise-returning function provided to attribute where a void return was expected.", "voidReturnInheritedMethod": "Promise-returning method provided where a void return was expected by extended/implemented type '{{ heritageTypeName }}'.", "voidReturnProperty": "Promise-returning function provided to property where a void return was expected.", @@ -7777,10 +7778,20 @@ }, "restrict-template-expressions": { "create": [Function], "defaultOptions": [ { + "allow": [ + { + "from": "lib", + "name": [ + "Error", + "URL", + "URLSearchParams", + ], + }, + ], "allowAny": true, "allowBoolean": true, "allowNullish": true, "allowNumber": true, "allowRegExp": true, @@ -7810,10 +7821,121 @@ }, "schema": [ { "additionalProperties": false, "properties": { + "allow": { + "description": "Types to allow in template expressions.", + "items": { + "oneOf": [ + { + "type": "string", + }, + { + "additionalProperties": false, + "properties": { + "from": { + "enum": [ + "file", + ], + "type": "string", + }, + "name": { + "oneOf": [ + { + "type": "string", + }, + { + "items": { + "type": "string", + }, + "minItems": 1, + "type": "array", + "uniqueItems": true, + }, + ], + }, + "path": { + "type": "string", + }, + }, + "required": [ + "from", + "name", +
test on ubuntu-latest node@20
Process completed with exit code 1.
source/configs/strict.unit.test.ts > strict > should match the snapshot: source/configs/strict.unit.test.ts#L6
Error: Snapshot `strict > should match the snapshot 1` mismatched - Expected + Received @@ -68,11 +68,11 @@ { "languageOptions": { "parser": { "meta": { "name": "typescript-eslint/parser", - "version": "8.5.0", + "version": "8.6.0", }, "parseForESLint": [Function], }, "sourceType": "module", }, @@ -819,11 +819,11 @@ }, }, }, "meta": { "name": "@typescript-eslint/eslint-plugin", - "version": "8.5.0", + "version": "8.6.0", }, "rules": { "adjacent-overload-signatures": { "create": [Function], "defaultOptions": [], @@ -5375,10 +5375,11 @@ "requiresTypeChecking": true, "url": "https://typescript-eslint.io/rules/no-misused-promises", }, "messages": { "conditional": "Expected non-Promise value in a boolean conditional.", + "predicate": "Expected a non-Promise value to be returned.", "spread": "Expected a non-Promise value to be spreaded in an object.", "voidReturnArgument": "Promise returned in function argument where a void return was expected.", "voidReturnAttribute": "Promise-returning function provided to attribute where a void return was expected.", "voidReturnInheritedMethod": "Promise-returning method provided where a void return was expected by extended/implemented type '{{ heritageTypeName }}'.", "voidReturnProperty": "Promise-returning function provided to property where a void return was expected.", @@ -7844,10 +7845,20 @@ }, "restrict-template-expressions": { "create": [Function], "defaultOptions": [ { + "allow": [ + { + "from": "lib", + "name": [ + "Error", + "URL", + "URLSearchParams", + ], + }, + ], "allowAny": true, "allowBoolean": true, "allowNullish": true, "allowNumber": true, "allowRegExp": true, @@ -7877,10 +7888,121 @@ }, "schema": [ { "additionalProperties": false, "properties": { + "allow": { + "description": "Types to allow in template expressions.", + "items": { + "oneOf": [ + { + "type": "string", + }, + { + "additionalProperties": false, + "properties": { + "from": { + "enum": [ + "file", + ], + "type": "string", + }, + "name": { + "oneOf": [ + { + "type": "string", + }, + { + "items": { + "type": "string", + }, + "minItems": 1, + "type": "array", + "uniqueItems": true, + }, + ], + }, + "path": { + "type": "string", +
source/configs/strict.unit.test.ts > strict > should include the js all config: source/configs/strict.unit.test.ts#L14
Error: Snapshot `strict > should include the js all config 1` mismatched - Expected + Received @@ -1,11 +1,11 @@ { "languageOptions": { "parser": { "meta": { "name": "typescript-eslint/parser", - "version": "8.5.0", + "version": "8.6.0", }, "parseForESLint": [Function], }, "sourceType": "module", }, @@ -752,11 +752,11 @@ }, }, }, "meta": { "name": "@typescript-eslint/eslint-plugin", - "version": "8.5.0", + "version": "8.6.0", }, "rules": { "adjacent-overload-signatures": { "create": [Function], "defaultOptions": [], @@ -5308,10 +5308,11 @@ "requiresTypeChecking": true, "url": "https://typescript-eslint.io/rules/no-misused-promises", }, "messages": { "conditional": "Expected non-Promise value in a boolean conditional.", + "predicate": "Expected a non-Promise value to be returned.", "spread": "Expected a non-Promise value to be spreaded in an object.", "voidReturnArgument": "Promise returned in function argument where a void return was expected.", "voidReturnAttribute": "Promise-returning function provided to attribute where a void return was expected.", "voidReturnInheritedMethod": "Promise-returning method provided where a void return was expected by extended/implemented type '{{ heritageTypeName }}'.", "voidReturnProperty": "Promise-returning function provided to property where a void return was expected.", @@ -7777,10 +7778,20 @@ }, "restrict-template-expressions": { "create": [Function], "defaultOptions": [ { + "allow": [ + { + "from": "lib", + "name": [ + "Error", + "URL", + "URLSearchParams", + ], + }, + ], "allowAny": true, "allowBoolean": true, "allowNullish": true, "allowNumber": true, "allowRegExp": true, @@ -7810,10 +7821,121 @@ }, "schema": [ { "additionalProperties": false, "properties": { + "allow": { + "description": "Types to allow in template expressions.", + "items": { + "oneOf": [ + { + "type": "string", + }, + { + "additionalProperties": false, + "properties": { + "from": { + "enum": [ + "file", + ], + "type": "string", + }, + "name": { + "oneOf": [ + { + "type": "string", + }, + { + "items": { + "type": "string", + }, + "minItems": 1, + "type": "array", + "uniqueItems": true, + }, + ], + }, + "path": { + "type": "string", + }, + }, + "required": [ + "from", + "name", +
collect coverage
Process completed with exit code 1.
test on ubuntu-latest node@22
The job was canceled because "_20_ubuntu-latest" failed.
source/configs/strict.unit.test.ts > strict > should match the snapshot: source/configs/strict.unit.test.ts#L6
Error: Snapshot `strict > should match the snapshot 1` mismatched - Expected + Received @@ -68,11 +68,11 @@ { "languageOptions": { "parser": { "meta": { "name": "typescript-eslint/parser", - "version": "8.5.0", + "version": "8.6.0", }, "parseForESLint": [Function], }, "sourceType": "module", }, @@ -819,11 +819,11 @@ }, }, }, "meta": { "name": "@typescript-eslint/eslint-plugin", - "version": "8.5.0", + "version": "8.6.0", }, "rules": { "adjacent-overload-signatures": { "create": [Function], "defaultOptions": [], @@ -5375,10 +5375,11 @@ "requiresTypeChecking": true, "url": "https://typescript-eslint.io/rules/no-misused-promises", }, "messages": { "conditional": "Expected non-Promise value in a boolean conditional.", + "predicate": "Expected a non-Promise value to be returned.", "spread": "Expected a non-Promise value to be spreaded in an object.", "voidReturnArgument": "Promise returned in function argument where a void return was expected.", "voidReturnAttribute": "Promise-returning function provided to attribute where a void return was expected.", "voidReturnInheritedMethod": "Promise-returning method provided where a void return was expected by extended/implemented type '{{ heritageTypeName }}'.", "voidReturnProperty": "Promise-returning function provided to property where a void return was expected.", @@ -7844,10 +7845,20 @@ }, "restrict-template-expressions": { "create": [Function], "defaultOptions": [ { + "allow": [ + { + "from": "lib", + "name": [ + "Error", + "URL", + "URLSearchParams", + ], + }, + ], "allowAny": true, "allowBoolean": true, "allowNullish": true, "allowNumber": true, "allowRegExp": true, @@ -7877,10 +7888,121 @@ }, "schema": [ { "additionalProperties": false, "properties": { + "allow": { + "description": "Types to allow in template expressions.", + "items": { + "oneOf": [ + { + "type": "string", + }, + { + "additionalProperties": false, + "properties": { + "from": { + "enum": [ + "file", + ], + "type": "string", + }, + "name": { + "oneOf": [ + { + "type": "string", + }, + { + "items": { + "type": "string", + }, + "minItems": 1, + "type": "array", + "uniqueItems": true, + }, + ], + }, + "path": { + "type": "string", +
source/configs/strict.unit.test.ts > strict > should include the js all config: source/configs/strict.unit.test.ts#L14
Error: Snapshot `strict > should include the js all config 1` mismatched - Expected + Received @@ -1,11 +1,11 @@ { "languageOptions": { "parser": { "meta": { "name": "typescript-eslint/parser", - "version": "8.5.0", + "version": "8.6.0", }, "parseForESLint": [Function], }, "sourceType": "module", }, @@ -752,11 +752,11 @@ }, }, }, "meta": { "name": "@typescript-eslint/eslint-plugin", - "version": "8.5.0", + "version": "8.6.0", }, "rules": { "adjacent-overload-signatures": { "create": [Function], "defaultOptions": [], @@ -5308,10 +5308,11 @@ "requiresTypeChecking": true, "url": "https://typescript-eslint.io/rules/no-misused-promises", }, "messages": { "conditional": "Expected non-Promise value in a boolean conditional.", + "predicate": "Expected a non-Promise value to be returned.", "spread": "Expected a non-Promise value to be spreaded in an object.", "voidReturnArgument": "Promise returned in function argument where a void return was expected.", "voidReturnAttribute": "Promise-returning function provided to attribute where a void return was expected.", "voidReturnInheritedMethod": "Promise-returning method provided where a void return was expected by extended/implemented type '{{ heritageTypeName }}'.", "voidReturnProperty": "Promise-returning function provided to property where a void return was expected.", @@ -7777,10 +7778,20 @@ }, "restrict-template-expressions": { "create": [Function], "defaultOptions": [ { + "allow": [ + { + "from": "lib", + "name": [ + "Error", + "URL", + "URLSearchParams", + ], + }, + ], "allowAny": true, "allowBoolean": true, "allowNullish": true, "allowNumber": true, "allowRegExp": true, @@ -7810,10 +7821,121 @@ }, "schema": [ { "additionalProperties": false, "properties": { + "allow": { + "description": "Types to allow in template expressions.", + "items": { + "oneOf": [ + { + "type": "string", + }, + { + "additionalProperties": false, + "properties": { + "from": { + "enum": [ + "file", + ], + "type": "string", + }, + "name": { + "oneOf": [ + { + "type": "string", + }, + { + "items": { + "type": "string", + }, + "minItems": 1, + "type": "array", + "uniqueItems": true, + }, + ], + }, + "path": { + "type": "string", + }, + }, + "required": [ + "from", + "name", +
test on ubuntu-latest node@22
Process completed with exit code 1.
test on windows-latest node@20
The job was canceled because "_20_ubuntu-latest" failed.
test on windows-latest node@20
The operation was canceled.
test on windows-latest node@22
The job was canceled because "_20_ubuntu-latest" failed.
test on windows-latest node@22
The operation was canceled.