-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feat/linear-checker
- Loading branch information
Showing
743 changed files
with
9,396 additions
and
11,725 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -289,52 +289,6 @@ jobs: | |
docker buildx imagetools create --tag ${{ env.REGISTRY_IMAGE }}:${{ steps.latest-tag.outputs.tag }} --tag ${{ env.REGISTRY_IMAGE }}:latest $(printf '${{ env.REGISTRY_IMAGE }}@sha256:%s ' *) | ||
docker buildx imagetools inspect ${{ env.REGISTRY_IMAGE }}:latest | ||
pub-vscode-extension: | ||
needs: | ||
- check-bump | ||
if: | | ||
always() | ||
&& ( | ||
needs.check-bump.result == 'success' | ||
|| github.event_name == 'workflow_dispatch' | ||
) | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- uses: WyriHaximus/[email protected] | ||
id: latest-tag | ||
- uses: metatypedev/setup-ghjk@318209a9d215f70716a4ac89dbeb9653a2deb8bc | ||
- shell: bash | ||
run: | | ||
cd src/meta-lsp | ||
pnpm install --frozen-lockfile | ||
cd ts-language-server | ||
pnpm install --frozen-lockfile | ||
cd ../vscode-metatype-support | ||
pnpm install --frozen-lockfile | ||
cd .. | ||
pnpm compile:ts-server | ||
pnpm compile:vscode | ||
pnpm vscode:package | ||
# avoid publishing pre-release versions as they don't | ||
# support it | ||
if [[ "$(ghjk x version-print)" != *-* ]]; then | ||
if [ ${{ github.event_name == 'workflow_dispatch' && inputs.ovewriteArtifacts }} == 'true' ]; then | ||
pnpm run vscode:publish -p ${{ secrets.AZURE_DEVOPS_TOKEN }} --skip-duplicate | ||
else | ||
pnpm run vscode:publish -p ${{ secrets.AZURE_DEVOPS_TOKEN }} | ||
fi | ||
fi | ||
- uses: svenstaro/upload-release-action@v2 | ||
with: | ||
tag: ${{ steps.latest-tag.outputs.tag }} | ||
file: "src/meta-lsp/*.vsix" | ||
file_glob: true | ||
overwrite: ${{ inputs.ovewriteArtifacts }} | ||
|
||
bump: | ||
needs: | ||
- pub-meta-cli | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
{ | ||
"recommendations": [ | ||
"charliermarsh.ruff", | ||
"rust-lang.rust-analyzer", | ||
"ms-python.black-formatter", | ||
"denoland.vscode-deno", | ||
"ms-vscode-remote.remote-containers", | ||
"dbaeumer.vscode-eslint", | ||
"graphql.vscode-graphql-syntax", | ||
"unifiedjs.vscode-mdx", | ||
"ms-python.vscode-pylance", | ||
"ms-python.python", | ||
"chrischinchilla.vale-vscode", | ||
"hediet.vscode-drawio", | ||
"davidlday.languagetool-linter", | ||
"dtsvet.vscode-wasm", | ||
"bierner.comment-tagged-templates" | ||
] | ||
"recommendations": [ | ||
"charliermarsh.ruff", | ||
"rust-lang.rust-analyzer", | ||
"ms-python.black-formatter", | ||
"denoland.vscode-deno", | ||
"ms-vscode-remote.remote-containers", | ||
"dbaeumer.vscode-eslint", | ||
"graphql.vscode-graphql-syntax", | ||
"unifiedjs.vscode-mdx", | ||
"ms-python.vscode-pylance", | ||
"ms-python.python", | ||
"chrischinchilla.vale-vscode", | ||
"hediet.vscode-drawio", | ||
"davidlday.languagetool-linter", | ||
"dtsvet.vscode-wasm", | ||
"bierner.comment-tagged-templates" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,33 @@ | ||
// A launch configuration that compiles the extension and then opens it inside a new window | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"type": "extensionHost", | ||
"request": "launch", | ||
"name": "Launch Client", | ||
"runtimeExecutable": "${execPath}", | ||
"args": [ | ||
"--extensionDevelopmentPath=${workspaceRoot}/meta-lsp" | ||
], | ||
"outFiles": [ | ||
"${workspaceRoot}/meta-lsp/vscode-metatype-support/out/**/*.js" | ||
], | ||
"preLaunchTask": "vscode-ext:build" | ||
}, | ||
{ | ||
"name": "Language Server E2E Test", | ||
"type": "extensionHost", | ||
"request": "launch", | ||
"runtimeExecutable": "${execPath}", | ||
"args": [ | ||
"--extensionDevelopmentPath=${workspaceRoot}", | ||
"--extensionTestsPath=${workspaceRoot}/client/out/test/index", | ||
"${workspaceRoot}/client/testFixture" | ||
], | ||
"outFiles": [ | ||
"${workspaceRoot}/client/out/test/**/*.js" | ||
] | ||
} | ||
] | ||
// A launch configuration that compiles the extension and then opens it inside a new window | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"type": "extensionHost", | ||
"request": "launch", | ||
"name": "Launch Client", | ||
"runtimeExecutable": "${execPath}", | ||
"args": [ | ||
"--extensionDevelopmentPath=${workspaceRoot}/meta-lsp" | ||
], | ||
"outFiles": [ | ||
"${workspaceRoot}/meta-lsp/vscode-metatype-support/out/**/*.js" | ||
], | ||
"preLaunchTask": "vscode-ext:build" | ||
}, | ||
{ | ||
"name": "Language Server E2E Test", | ||
"type": "extensionHost", | ||
"request": "launch", | ||
"runtimeExecutable": "${execPath}", | ||
"args": [ | ||
"--extensionDevelopmentPath=${workspaceRoot}", | ||
"--extensionTestsPath=${workspaceRoot}/client/out/test/index", | ||
"${workspaceRoot}/client/testFixture" | ||
], | ||
"outFiles": [ | ||
"${workspaceRoot}/client/out/test/**/*.js" | ||
] | ||
} | ||
] | ||
} |
Oops, something went wrong.