Skip to content

Commit 89ec20b

Browse files
fix: Inject coder ssh configuration between comments (#48)
1 parent ec4aa92 commit 89ec20b

14 files changed

+1237
-15985
lines changed

.github/workflows/ci.yaml

+16
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,19 @@ jobs:
2323
- run: yarn
2424

2525
- run: yarn lint
26+
27+
- run: yarn test:ci
28+
29+
test:
30+
runs-on: ubuntu-22.04
31+
32+
steps:
33+
- uses: actions/checkout@v2
34+
35+
- uses: actions/setup-node@v2
36+
with:
37+
node-version: '16'
38+
39+
- run: yarn
40+
41+
- run: yarn test:ci

.vscode/launch.json

+2-20
Original file line numberDiff line numberDiff line change
@@ -5,26 +5,8 @@
55
"name": "Run Extension",
66
"type": "extensionHost",
77
"request": "launch",
8-
"args": [
9-
"--extensionDevelopmentPath=${workspaceFolder}"
10-
],
11-
"outFiles": [
12-
"${workspaceFolder}/dist/**/*.js"
13-
]
14-
},
15-
{
16-
"name": "Extension Tests",
17-
"type": "extensionHost",
18-
"request": "launch",
19-
"args": [
20-
"--disable-extensions",
21-
"--extensionDevelopmentPath=${workspaceFolder}",
22-
"--extensionTestsPath=${workspaceFolder}/out/test/runner"
23-
],
24-
"outFiles": [
25-
"${workspaceFolder}/out/**/*.test.js"
26-
],
27-
"preLaunchTask": "tsc: build"
8+
"args": ["--extensionDevelopmentPath=${workspaceFolder}"],
9+
"outFiles": ["${workspaceFolder}/dist/**/*.js"]
2810
}
2911
]
3012
}

0 commit comments

Comments
 (0)