-
-
Notifications
You must be signed in to change notification settings - Fork 732
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: move from circleci to gha (#4248)
* fix: move from circleci to gha * fix: move from circleci to gha * fix: move from circleci to gha * fix: docker compose * fix: docker compose * fix: docker compose * fix: docker compose * fix: docker compose * fix: docker compose * fix: docker compose * fix: docker compose * fix: docker compose * fix: docker compose * fix: docker compose * fix: docker compose * fix: docker compose * fix: docker compose * fix: docker compose * fix: docker compose * fix: docker compose
- Loading branch information
1 parent
1293e6c
commit 6175f8f
Showing
6 changed files
with
58 additions
and
147 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
name: Acceptance Tests using docker compose | ||
|
||
on: | ||
push: | ||
branches: | ||
- '3.x' | ||
pull_request: | ||
branches: | ||
- '**' | ||
|
||
env: | ||
CI: true | ||
# Force terminal colors. @see https://www.npmjs.com/package/colors | ||
FORCE_COLOR: 1 | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
node-version: [20.x] | ||
|
||
steps: | ||
# Checkout the repository | ||
- name: Checkout Repository | ||
uses: actions/checkout@v3 | ||
|
||
# Run acceptance tests using docker-compose | ||
- name: Run Puppeteer Acceptance Tests | ||
run: docker-compose run --rm test-acceptance.puppeteer | ||
working-directory: test | ||
|
||
# Run rest tests using docker-compose | ||
- name: Run REST Tests | ||
run: docker-compose run --rm test-rest | ||
working-directory: test | ||
|
||
# Run WebDriverIO acceptance tests using docker-compose | ||
- name: Run WebDriverIO Acceptance Tests | ||
run: docker-compose run --rm test-acceptance.webdriverio | ||
working-directory: test | ||
|
||
# Run faker BDD tests using docker-compose | ||
- name: Run Faker BDD Tests | ||
run: docker-compose run --rm test-bdd.faker | ||
working-directory: test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters