Skip to content

Update main.yaml #5280

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
@@ -64,6 +64,10 @@ jobs:
platform: darwin
arch: arm64
npm_config_arch: arm64
- os: openeuler-2309
platform: linux
arch: riscv64
npm_config_arch: riscv64
runs-on: ${{ matrix.os }}
steps:
# 1. Check-out repository

Unchanged files with check annotations Beta

import { Telemetry } from "core/util/posthog";
import * as vscode from "vscode";
import * as path from "path";

Check warning on line 5 in extensions/vscode/src/activation/activate.ts

GitHub Actions / vscode-checks

There should be at least one empty line between import groups

Check warning on line 5 in extensions/vscode/src/activation/activate.ts

GitHub Actions / vscode-checks

`path` import should occur before import of `core/util/paths`
import { VsCodeExtension } from "../extension/VsCodeExtension";
import registerQuickFixProvider from "../lang-server/codeActions";
import { getExtensionVersion } from "../util/util";
stopStatusBarLoading,
} from "./statusBar";
import type { IDE } from "core";

Check warning on line 26 in extensions/vscode/src/autocomplete/completionProvider.ts

GitHub Actions / vscode-checks

There should be at least one empty line between import groups
import { handleLLMError } from "../util/errorHandling";

Check warning on line 27 in extensions/vscode/src/autocomplete/completionProvider.ts

GitHub Actions / vscode-checks

`../util/errorHandling` import should occur before import of `../util/messages`
interface VsCodeCompletionInput {
document: vscode.TextDocument;
import * as vscode from "vscode";
import type { IDE, Range, RangeInFile, RangeInFileWithContents } from "core";
import type Parser from "web-tree-sitter";

Check warning on line 11 in extensions/vscode/src/autocomplete/lsp.ts

GitHub Actions / vscode-checks

There should be at least one empty line between import groups
import { GetLspDefinitionsFunction } from "core/autocomplete/types";

Check warning on line 12 in extensions/vscode/src/autocomplete/lsp.ts

GitHub Actions / vscode-checks

`core/autocomplete/types` import should occur before import of `core/autocomplete/util/ast`
import {

Check warning on line 13 in extensions/vscode/src/autocomplete/lsp.ts

GitHub Actions / vscode-checks

`core/autocomplete/snippets/types` import should occur before import of `core/autocomplete/util/ast`
AutocompleteCodeSnippet,
AutocompleteSnippetType,
} from "core/autocomplete/snippets/types";
import * as URI from "uri-js";

Check warning on line 17 in extensions/vscode/src/autocomplete/lsp.ts

GitHub Actions / vscode-checks

`uri-js` import should occur before import of `vscode`
type GotoProviderName =
| "vscode.executeDefinitionProvider"
} from "./decorations";
import type { ApplyState, DiffLine } from "core";
import type { VerticalDiffCodeLens } from "./manager";

Check warning on line 14 in extensions/vscode/src/diff/vertical/handler.ts

GitHub Actions / vscode-checks

`./manager` type import should occur before type import of `core`
export interface VerticalDiffHandlerOptions {
input?: string;
CONTINUE_WORKSPACE_KEY,
getContinueWorkspaceConfig,
} from "../../../util/workspaceConfig";
import { isTutorialFile } from "../../../util/tutorial";

Check warning on line 10 in extensions/vscode/src/lang-server/codeLens/providers/QuickActionsCodeLensProvider.ts

GitHub Actions / vscode-checks

`../../../util/tutorial` import should occur before import of `../../../util/workspaceConfig`
export const ENABLE_QUICK_ACTIONS_KEY = "enableQuickActions";