Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
gbetances089 committed Oct 15, 2024
1 parent d807ffc commit da43c8f
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/e2e_tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: GHA to run e2e test for examples
on: push

jobs:
run-e2e-test:
name: run e2e test on examples
runs-on: ubuntu-latest
steps:
- name: check out code
uses: actions/checkout@v4
- name: set nodeJS version
uses: actions/setup-node@v4
with:
node-version: 17
- name: Build spring boot start - invoice example
run: mvn spring-boot:run
working-directory: /spring-boot-starter/example-invoice
- name: check out ee code
uses: actions/checkout@v4
with:
repository: camunda/camunda-bpm-platform-ee
- name: Run tests
uses: DevExpress/testcafe-action@latest
with:
args: "chrome tests"


0 comments on commit da43c8f

Please sign in to comment.