fix: move from circleci to gha #6
Workflow file for this run
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
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-22.04 | ||
strategy: | ||
matrix: | ||
node-version: [20.x] | ||
steps: | ||
# need checkout before using compose-action | ||
- uses: actions/checkout@v3 | ||
- uses: isbang/[email protected] | ||
with: | ||
compose-file: "./test/docker-compose.yml" | ||
down-flags: "--volumes" | ||
- run: | ||
command: docker-compose run --rm test-acceptance.puppeteer | ||
Check failure on line 33 in .github/workflows/acceptance-tests.yml
|
||
working_directory: test | ||
when: always | ||
- run: | ||
command: docker-compose run --rm test-rest | ||
working_directory: test | ||
when: always | ||
- run: | ||
command: docker-compose run --rm test-acceptance.webdriverio | ||
working_directory: test | ||
when: always | ||
- run: | ||
command: docker-compose run --rm test-bdd.faker | ||
working_directory: test | ||
when: always |