Skip to content

Commit

Permalink
Fix: Allow changes E2E run against develop main and release branches. (
Browse files Browse the repository at this point in the history
…#900)

* Allow changes E2E run against develop main and release branches.

* Remove artifact upload.

* Remove unused tests.
  • Loading branch information
amovar18 authored Dec 17, 2024
1 parent 1566540 commit 3cf2601
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 101 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/tests-cli-e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,14 @@ on:
push:
branches:
- develop
- main
- release/*

pull_request:
branches:
- develop
- main
- release/*

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
Expand Down Expand Up @@ -56,8 +60,3 @@ jobs:
- name: Run the tests
run: |
npm run test:cli:e2e
- name: Archive build artifacts
uses: actions/upload-artifact@v2
with:
name: my-artifact
path: cd tests/e2e-test/utils/
10 changes: 4 additions & 6 deletions .github/workflows/tests-extension-e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,14 @@ on:
push:
branches:
- develop
- main
- release/*

pull_request:
branches:
- develop

- main
- release/*
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

Expand Down Expand Up @@ -62,8 +65,3 @@ jobs:
- name: Run the tests
run: |
npm run test:extension:e2e
- name: Archive build artifacts
uses: actions/upload-artifact@v2
with:
name: my-artifact
path: cd tests/e2e-test/utils/

This file was deleted.

0 comments on commit 3cf2601

Please sign in to comment.