We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd42387 commit dd8124fCopy full SHA for dd8124f
.github/workflows/ci.yaml
@@ -147,7 +147,12 @@ jobs:
147
run: yarn build:vscode
148
149
# Our code imports code from VS Code's output directory meaning VS Code
150
- # must be built before running these tests.
+ # must be built before running these tests. It looks for `out` in order
151
+ # to works during development (for release we move `out-build` to `out`)
152
+ # so symlink `out` to `out-build` as this is a production build.
153
+ - name: Link vscode
154
+ run: ln -s out-build vendor/modules/code-oss-dev/out
155
+
156
# TODO: Move to its own step?
157
- name: Run code-server unit tests
158
run: yarn test:unit
0 commit comments