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 dba3105 commit 64704b6Copy full SHA for 64704b6
1 file changed
ā.github/workflows/e2e.ymlā
@@ -34,6 +34,17 @@ jobs:
34
- name: Install xvfb
35
if: github.event_name != 'pull_request' || steps.e2e-marker.outputs.cache-hit != 'true'
36
run: sudo apt-get install -y xvfb
37
+
38
+ - name: Cache VS Code test binary
39
+ if: github.event_name != 'pull_request' || steps.e2e-marker.outputs.cache-hit != 'true'
40
+ uses: actions/cache@v4
41
+ with:
42
+ path: |
43
+ apps/vscode-e2e/.vscode-test/
44
+ key: vscode-test-${{ runner.os }}-v1
45
+ restore-keys: |
46
+ vscode-test-${{ runner.os }}-
47
48
- name: Run mocked E2E tests
49
id: run-e2e
50
# merge_group and workflow_dispatch always run; cache skip is pull_request only
0 commit comments