From 747c5acddc0b7aef1be315586fb198d45d9b7b1a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nacho=20Cord=C3=B3n?= Date: Thu, 19 Oct 2023 15:54:56 +0200 Subject: [PATCH] Solves issue with vscode-extension e2e tests depending on their build --- .github/workflows/ci.yaml | 3 +++ turbo.json | 5 ++++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 520c3baa7..d6b745720 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -81,6 +81,9 @@ jobs: # https://code.visualstudio.com/api/working-with-extensions/continuous-integration#github-actions run: xvfb-run -a npm run test:e2e + - name: ls files + run: ls -lh packages/react-codemirror-experimental/ + - uses: actions/upload-artifact@v3 if: always() with: diff --git a/turbo.json b/turbo.json index 0a569f08b..a03b1faa3 100644 --- a/turbo.json +++ b/turbo.json @@ -50,7 +50,10 @@ "@neo4j-cypher/vscode-extension#test:e2e": { "cache": false, "persistent": false, - "dependsOn": ["@neo4j-cypher/react-codemirror#test:e2e"] + "dependsOn": [ + "@neo4j-cypher/react-codemirror#test:e2e", + "@neo4j-cypher/vscode-extension#build" + ] } } }