Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitbafa0a9

Browse files
authored
Merge branch 'microsoft:main' into main
2 parentsf263912 +1bde544 commitbafa0a9

File tree

516 files changed

+82996
-63817
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

516 files changed

+82996
-63817
lines changed

‎.github/actions/package-lock.json‎

Lines changed: 6763 additions & 3148 deletions
Some generated files are not rendered by default. Learn more aboutcustomizing how changed files appear on GitHub.

‎.github/actions/package.json‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@
1414
"@actions/github":"^5.0.3",
1515
"@octokit/rest":"^19.0.3",
1616
"@slack/web-api":"^6.7.2",
17-
"applicationinsights":"^2.3.1",
17+
"applicationinsights":"^2.5.1",
1818
"axios":"^0.27.2",
1919
"uuid":"^8.3.2"
2020
},
2121
"devDependencies": {
22-
"@azure/storage-blob":"^12.11.0",
22+
"@azure/storage-blob":"^12.13.0",
2323
"@types/chai":"^4.3.3",
2424
"@types/mocha":"^9.1.1",
2525
"@types/uuid":"^8.3.4",
@@ -32,7 +32,7 @@
3232
"eslint-plugin-prettier":"^4.2.1",
3333
"husky":"^8.0.1",
3434
"mocha":"^10.0.0",
35-
"mongodb":"^4.8.1",
35+
"mongodb":"^4.17.0",
3636
"nock":"^13.2.9",
3737
"prettier":"2.7.1",
3838
"ts-node":"^10.9.1",

‎.github/workflows/by-design-closer-debugger .yml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on:ubuntu-latest
1414
steps:
1515
-name:Checkout Actions
16-
uses:actions/checkout@v2
16+
uses:actions/checkout@v3
1717
-name:Install Actions
1818
run:cd ./.github/actions && npm install --production && cd ../..
1919
-name:Stale Closer

‎.github/workflows/by-design-closer.yml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on:ubuntu-latest
1414
steps:
1515
-name:Checkout Actions
16-
uses:actions/checkout@v2
16+
uses:actions/checkout@v3
1717
-name:Install Actions
1818
run:cd ./.github/actions && npm install --production && cd ../..
1919
-name:Stale Closer

‎.github/workflows/ci_linux.yml‎

Lines changed: 50 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,50 @@
1-
name:CI (Linux)
2-
3-
on:
4-
push:
5-
branches:[ main ]
6-
pull_request:
7-
branches:[ main ]
8-
9-
jobs:
10-
build:
11-
runs-on:ubuntu-latest
12-
13-
steps:
14-
-uses:actions/checkout@v2
15-
16-
-name:Use Node.js 14.16.x
17-
uses:actions/setup-node@v1
18-
with:
19-
node-version:14.16.x
20-
21-
-name:Install Dependencies
22-
run:yarn install
23-
working-directory:Extension
24-
25-
-name:Compile Sources
26-
run:yarn run compile
27-
working-directory:Extension
28-
29-
-name:Run Linter
30-
run:yarn run lint
31-
working-directory:Extension
32-
33-
-name:Compile Test Sources
34-
run:yarn run pretest
35-
working-directory:Extension
36-
37-
-name:Run unit tests
38-
uses:GabrielBB/xvfb-action@v1.4
39-
with:
40-
run:yarn run unitTests
41-
working-directory:Extension
42-
43-
# - name: Run languageServer integration tests
44-
# uses: GabrielBB/xvfb-action@v1.4
45-
# with:
46-
# run: yarn run integrationTests
47-
# working-directory: Extension
1+
name:CI (Linux)
2+
3+
on:
4+
push:
5+
branches:[ main ]
6+
pull_request:
7+
branches:[ main ]
8+
9+
jobs:
10+
build:
11+
runs-on:ubuntu-22.04
12+
13+
steps:
14+
-uses:actions/checkout@v3
15+
16+
-name:Use Node.js 16
17+
uses:actions/setup-node@v3
18+
with:
19+
node-version:16
20+
21+
-name:Install Dependencies
22+
run:yarn install
23+
working-directory:Extension
24+
25+
-name:Compile Sources
26+
run:yarn run compile
27+
working-directory:Extension
28+
29+
-name:Run Linter
30+
run:yarn run lint
31+
working-directory:Extension
32+
33+
-name:Run unit tests
34+
run:yarn test
35+
working-directory:Extension
36+
37+
# # NOTE : We can't run the test that require the native binary files
38+
# # yet -- there will be an update soon that allows the tester to
39+
# # acquire them on-the-fly
40+
# - name: Run simple vscode unit tests
41+
# uses: GabrielBB/xvfb-action@v1.6
42+
# with:
43+
# run: yarn test --scenario=SingleRootProject
44+
# working-directory: Extension
45+
46+
# - name: Run languageServer integration tests
47+
# uses: GabrielBB/xvfb-action@v1.6
48+
# with:
49+
# run: yarn run integrationTests
50+
# working-directory: Extension

‎.github/workflows/ci_mac.yml‎

Lines changed: 50 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,50 @@
1-
name:CI (Mac)
2-
3-
on:
4-
push:
5-
branches:[ main ]
6-
pull_request:
7-
branches:[ main ]
8-
9-
jobs:
10-
build:
11-
runs-on:macos-latest
12-
13-
steps:
14-
-uses:actions/checkout@v2
15-
16-
-name:Use Node.js 14.16.x
17-
uses:actions/setup-node@v1
18-
with:
19-
node-version:14.16.x
20-
21-
-name:Install Dependencies
22-
run:yarn install --network-timeout 100000
23-
working-directory:Extension
24-
25-
-name:Compile Sources
26-
run:yarn run compile
27-
working-directory:Extension
28-
29-
-name:Run Linter
30-
run:yarn run lint
31-
working-directory:Extension
32-
33-
-name:Compile Test Sources
34-
run:yarn run pretest
35-
working-directory:Extension
36-
37-
-name:Run unit tests
38-
uses:GabrielBB/xvfb-action@v1.4
39-
with:
40-
run:yarn run unitTests
41-
working-directory:Extension
42-
43-
# - name: Run languageServer integration tests
44-
# uses: GabrielBB/xvfb-action@v1.4
45-
# with:
46-
# run: yarn run integrationTests
47-
# working-directory: Extension
1+
name:CI (Mac)
2+
3+
on:
4+
push:
5+
branches:[ main ]
6+
pull_request:
7+
branches:[ main ]
8+
9+
jobs:
10+
build:
11+
runs-on:macos-12
12+
13+
steps:
14+
-uses:actions/checkout@v3
15+
16+
-name:Use Node.js 16
17+
uses:actions/setup-node@v3
18+
with:
19+
node-version:16
20+
21+
-name:Install Dependencies
22+
run:yarn install --network-timeout 100000
23+
working-directory:Extension
24+
25+
-name:Compile Sources
26+
run:yarn run compile
27+
working-directory:Extension
28+
29+
-name:Run Linter
30+
run:yarn run lint
31+
working-directory:Extension
32+
33+
-name:Run unit tests
34+
run:yarn test
35+
working-directory:Extension
36+
37+
# # NOTE : We can't run the test that require the native binary files
38+
# # yet -- there will be an update soon that allows the tester to
39+
# # acquire them on-the-fly
40+
# - name: Run simple vscode unit tests
41+
# uses: GabrielBB/xvfb-action@v1.6
42+
# with:
43+
# run: yarn test --scenario=SingleRootProject
44+
# working-directory: Extension
45+
46+
# - name: Run languageServer integration tests
47+
# uses: GabrielBB/xvfb-action@v1.6
48+
# with:
49+
# run: yarn run integrationTests
50+
# working-directory: Extension

‎.github/workflows/ci_windows.yml‎

Lines changed: 46 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,46 @@
1-
name:CI (Windows)
2-
3-
on:
4-
push:
5-
branches:[ main ]
6-
pull_request:
7-
branches:[ main ]
8-
9-
jobs:
10-
build:
11-
runs-on:windows-latest
12-
13-
steps:
14-
-uses:actions/checkout@v2
15-
16-
-name:Use Node.js 14.16.x
17-
uses:actions/setup-node@v1
18-
with:
19-
node-version:14.16.x
20-
21-
-name:Install Dependencies
22-
run:yarn install
23-
working-directory:Extension
24-
25-
-name:Compile Sources
26-
run:yarn run compile
27-
working-directory:Extension
28-
29-
-name:Run Linter
30-
run:yarn run lint
31-
working-directory:Extension
32-
33-
-name:Compile Test Sources
34-
run:yarn run pretest
35-
working-directory:Extension
36-
37-
-name:Run unit tests
38-
run:yarn run unitTests
39-
working-directory:Extension
40-
41-
# - name: Run languageServer integration tests
42-
# run: yarn run integrationTests
43-
# working-directory: Extension
1+
name:CI (Windows)
2+
3+
on:
4+
push:
5+
branches:[ main ]
6+
pull_request:
7+
branches:[ main ]
8+
9+
jobs:
10+
build:
11+
runs-on:windows-2022
12+
13+
steps:
14+
-uses:actions/checkout@v3
15+
16+
-name:Use Node.js 16
17+
uses:actions/setup-node@v3
18+
with:
19+
node-version:16
20+
21+
-name:Install Dependencies
22+
run:yarn install
23+
working-directory:Extension
24+
25+
-name:Compile Sources
26+
run:yarn run compile
27+
working-directory:Extension
28+
29+
-name:Run Linter
30+
run:yarn run lint
31+
working-directory:Extension
32+
33+
-name:Run unit tests
34+
run:yarn test
35+
working-directory:Extension
36+
37+
# # NOTE : We can't run the test that require the native binary files
38+
# # yet -- there will be an update soon that allows the tester to
39+
# # acquire them on-the-fly
40+
# - name: Run simple vscode unit tests
41+
# run: yarn test --scenario=SingleRootProject
42+
# working-directory: Extension
43+
44+
# - name: Run languageServer integration tests
45+
# run: yarn run integrationTests
46+
# working-directory: Extension

‎Extension/.eslintignore‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
*.js
2-
test/**/index.ts
3-
test/**/runTest.ts
4-
tools/prepublish.js
2+
3+
dist/
4+
vscode*.d.ts

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp