Skip to content

fix add credential on safari #1256

fix add credential on safari

fix add credential on safari #1256

Triggered via push August 23, 2024 05:42
Status Failure
Total duration 3m 12s
Artifacts

ci.yaml

on: push
Fit to window
Zoom out
Zoom in

Annotations

12 errors and 10 warnings
Error: Called `Option.unwrap()` on a `None` value: packages/option/src/index.ts#L117
at Option.unwrap packages/option/src/index.ts:117:9 at packages/typesystem/src/wildcard.test.ts:197:33
Error: Called `Option.unwrap()` on a `None` value: packages/option/src/index.ts#L117
at Option.unwrap packages/option/src/index.ts:117:9 at packages/typesystem/src/wildcard.test.ts:197:33
test
Process completed with exit code 1.
Typecheck: packages/typesystem/src/t.ts#L33
Generic type 'EnumBase<T>' requires 1 type argument(s).
Typecheck: packages/typesystem/src/enum.ts#L141
Generic type 'EnumBase<T>' requires 1 type argument(s).
Typecheck: packages/typesystem/src/t.ts#L33
Generic type 'EnumBase<T>' requires 1 type argument(s).
Typecheck: packages/typesystem/src/enum.ts#L141
Generic type 'EnumBase<T>' requires 1 type argument(s).
Typecheck: packages/runtime/src/models/Project.ts#L84
Generic type 'EnumBase<T>' requires 1 type argument(s).
Typecheck: packages/runtime-serde/src/deserialize.ts#L149
Type '[]' is not assignable to type 'CustomEnumVariants'.
Typecheck
Process completed with exit code 2.
migrate-db
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/checkout@v3, pnpm/action-setup@v2, actions/setup-node@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
test
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/checkout@v3, pnpm/action-setup@v2, actions/setup-node@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
Typecheck
The following actions use a deprecated Node.js version and will be forced to run on node20: pnpm/action-setup@v2, actions/setup-node@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
Format & Lint (Biome)
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/checkout@v3, pnpm/action-setup@v2, actions/setup-node@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
Clippy
The following actions use a deprecated Node.js version and will be forced to run on node20: pnpm/action-setup@v2, actions/setup-node@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
this expression creates a reference which is immediately dereferenced by the compiler: crates/tauri-plugin-midi/src/lib.rs#L77
warning: this expression creates a reference which is immediately dereferenced by the compiler --> crates/tauri-plugin-midi/src/lib.rs:77:13 | 77 | &port, | ^^^^^ help: change this to: `port` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow = note: `#[warn(clippy::needless_borrow)]` on by default
this expression creates a reference which is immediately dereferenced by the compiler: crates/tauri-plugin-midi/src/lib.rs#L129
warning: this expression creates a reference which is immediately dereferenced by the compiler --> crates/tauri-plugin-midi/src/lib.rs:129:18 | 129 | .connect(&port, "") | ^^^^^ help: change this to: `port` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
unused variable: `js_path`: crates/deno_experiments/src/main.rs#L12
warning: unused variable: `js_path` --> crates/deno_experiments/src/main.rs:12:9 | 12 | let js_path = Path::new(env!("CARGO_MANIFEST_DIR")).join("main.ts"); | ^^^^^^^ help: if this is intentional, prefix it with an underscore: `_js_path` | = note: `#[warn(unused_variables)]` on by default
unused import: `serde::Serialize`: apps/desktop/src-tauri/src/shell.rs#L4
warning: unused import: `serde::Serialize` --> apps/desktop/src-tauri/src/shell.rs:4:5 | 4 | use serde::Serialize; | ^^^^^^^^^^^^^^^^ | = note: `#[warn(unused_imports)]` on by default
unused import: `specta::Type`: apps/desktop/src-tauri/src/shell.rs#L5
warning: unused import: `specta::Type` --> apps/desktop/src-tauri/src/shell.rs:5:5 | 5 | use specta::Type; | ^^^^^^^^^^^^