Skip to content

Commit

Permalink
ci: PLT-313: Add yarn e2e test output atrifact
Browse files Browse the repository at this point in the history
  • Loading branch information
nikitabelonogov committed Apr 11, 2024
1 parent 1676190 commit d214039
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cicd_pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ jobs:
name: "Tests"
needs:
- changed_files
if: needs.changed_files.outputs.frontend == 'true' && github.ref_name == 'develop'
if: needs.changed_files.outputs.frontend == 'true'
uses: ./.github/workflows/tests-yarn-integration.yml
with:
head_sha: ${{ github.event.pull_request.head.sha || github.event.after }}
Expand All @@ -436,7 +436,7 @@ jobs:
name: "Tests"
needs:
- changed_files
if: needs.changed_files.outputs.frontend == 'true' && github.ref_name == 'develop'
if: needs.changed_files.outputs.frontend == 'true'
uses: ./.github/workflows/tests-yarn-e2e.yml
with:
head_sha: ${{ github.event.pull_request.head.sha || github.event.after }}
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/tests-yarn-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,12 @@ jobs:
run: |
yarn test:e2e
- uses: actions/upload-artifact@v4
if: always()
with:
name: e2e output
path: "web/libs/editor/tests/e2e/output"

- name: Kill LSO server
if: always()
continue-on-error: true
Expand Down

0 comments on commit d214039

Please sign in to comment.