-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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 browntarik/crashTelemetry
- Loading branch information
Showing
253 changed files
with
20,563 additions
and
6,214 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
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,47 +1,50 @@ | ||
name: CI (Linux) | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
pull_request: | ||
branches: [ main ] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Use Node.js 16 | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16 | ||
|
||
- name: Install Dependencies | ||
run: yarn install | ||
working-directory: Extension | ||
|
||
- name: Compile Sources | ||
run: yarn run compile | ||
working-directory: Extension | ||
|
||
- name: Run Linter | ||
run: yarn run lint | ||
working-directory: Extension | ||
|
||
- name: Compile Test Sources | ||
run: yarn run pretest | ||
working-directory: Extension | ||
|
||
- name: Run unit tests | ||
uses: GabrielBB/[email protected] | ||
with: | ||
run: yarn run unitTests | ||
working-directory: Extension | ||
|
||
# - name: Run languageServer integration tests | ||
# uses: GabrielBB/[email protected] | ||
# with: | ||
# run: yarn run integrationTests | ||
# working-directory: Extension | ||
name: CI (Linux) | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
pull_request: | ||
branches: [ main ] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-22.04 | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Use Node.js 16 | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16 | ||
|
||
- name: Install Dependencies | ||
run: yarn install | ||
working-directory: Extension | ||
|
||
- name: Compile Sources | ||
run: yarn run compile | ||
working-directory: Extension | ||
|
||
- name: Run Linter | ||
run: yarn run lint | ||
working-directory: Extension | ||
|
||
- name: Run unit tests | ||
run: yarn test | ||
working-directory: Extension | ||
|
||
# # NOTE : We can't run the test that require the native binary files | ||
# # yet -- there will be an update soon that allows the tester to | ||
# # acquire them on-the-fly | ||
# - name: Run simple vscode unit tests | ||
# uses: GabrielBB/[email protected] | ||
# with: | ||
# run: yarn test --scenario=SingleRootProject | ||
# working-directory: Extension | ||
|
||
# - name: Run languageServer integration tests | ||
# uses: GabrielBB/[email protected] | ||
# with: | ||
# run: yarn run integrationTests | ||
# working-directory: Extension |
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,47 +1,50 @@ | ||
name: CI (Mac) | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
pull_request: | ||
branches: [ main ] | ||
|
||
jobs: | ||
build: | ||
runs-on: macos-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Use Node.js 16 | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16 | ||
|
||
- name: Install Dependencies | ||
run: yarn install --network-timeout 100000 | ||
working-directory: Extension | ||
|
||
- name: Compile Sources | ||
run: yarn run compile | ||
working-directory: Extension | ||
|
||
- name: Run Linter | ||
run: yarn run lint | ||
working-directory: Extension | ||
|
||
- name: Compile Test Sources | ||
run: yarn run pretest | ||
working-directory: Extension | ||
|
||
- name: Run unit tests | ||
uses: GabrielBB/[email protected] | ||
with: | ||
run: yarn run unitTests | ||
working-directory: Extension | ||
|
||
# - name: Run languageServer integration tests | ||
# uses: GabrielBB/[email protected] | ||
# with: | ||
# run: yarn run integrationTests | ||
# working-directory: Extension | ||
name: CI (Mac) | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
pull_request: | ||
branches: [ main ] | ||
|
||
jobs: | ||
build: | ||
runs-on: macos-12 | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Use Node.js 16 | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16 | ||
|
||
- name: Install Dependencies | ||
run: yarn install --network-timeout 100000 | ||
working-directory: Extension | ||
|
||
- name: Compile Sources | ||
run: yarn run compile | ||
working-directory: Extension | ||
|
||
- name: Run Linter | ||
run: yarn run lint | ||
working-directory: Extension | ||
|
||
- name: Run unit tests | ||
run: yarn test | ||
working-directory: Extension | ||
|
||
# # NOTE : We can't run the test that require the native binary files | ||
# # yet -- there will be an update soon that allows the tester to | ||
# # acquire them on-the-fly | ||
# - name: Run simple vscode unit tests | ||
# uses: GabrielBB/[email protected] | ||
# with: | ||
# run: yarn test --scenario=SingleRootProject | ||
# working-directory: Extension | ||
|
||
# - name: Run languageServer integration tests | ||
# uses: GabrielBB/[email protected] | ||
# with: | ||
# run: yarn run integrationTests | ||
# working-directory: Extension |
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,43 +1,46 @@ | ||
name: CI (Windows) | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
pull_request: | ||
branches: [ main ] | ||
|
||
jobs: | ||
build: | ||
runs-on: windows-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Use Node.js 16 | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16 | ||
|
||
- name: Install Dependencies | ||
run: yarn install | ||
working-directory: Extension | ||
|
||
- name: Compile Sources | ||
run: yarn run compile | ||
working-directory: Extension | ||
|
||
- name: Run Linter | ||
run: yarn run lint | ||
working-directory: Extension | ||
|
||
- name: Compile Test Sources | ||
run: yarn run pretest | ||
working-directory: Extension | ||
|
||
- name: Run unit tests | ||
run: yarn run unitTests | ||
working-directory: Extension | ||
|
||
# - name: Run languageServer integration tests | ||
# run: yarn run integrationTests | ||
# working-directory: Extension | ||
name: CI (Windows) | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
pull_request: | ||
branches: [ main ] | ||
|
||
jobs: | ||
build: | ||
runs-on: windows-2022 | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Use Node.js 16 | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16 | ||
|
||
- name: Install Dependencies | ||
run: yarn install | ||
working-directory: Extension | ||
|
||
- name: Compile Sources | ||
run: yarn run compile | ||
working-directory: Extension | ||
|
||
- name: Run Linter | ||
run: yarn run lint | ||
working-directory: Extension | ||
|
||
- name: Run unit tests | ||
run: yarn test | ||
working-directory: Extension | ||
|
||
# # NOTE : We can't run the test that require the native binary files | ||
# # yet -- there will be an update soon that allows the tester to | ||
# # acquire them on-the-fly | ||
# - name: Run simple vscode unit tests | ||
# run: yarn test --scenario=SingleRootProject | ||
# working-directory: Extension | ||
|
||
# - name: Run languageServer integration tests | ||
# run: yarn run integrationTests | ||
# working-directory: Extension |
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,5 +1,4 @@ | ||
*.js | ||
test/**/index.ts | ||
test/**/runTest.ts | ||
tools/prepublish.js | ||
|
||
dist/ | ||
vscode*.d.ts |
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 |
---|---|---|
|
@@ -34,3 +34,4 @@ localized_string_ids.h | |
src/nativeStrings.ts | ||
|
||
vscode*.d.ts | ||
.scripts/_* |
Oops, something went wrong.