update changelog #134
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: End2End Testing with Cypress | |
on: | |
push: | |
{} | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
# Checkout the source code | |
- name: 🛎️ Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
# Restores the cache if it exists. | |
- name: ⛏ Restore docker image from cache | |
uses: satackey/[email protected] | |
continue-on-error: true | |
- name: 🏗️ Build the stack | |
run: docker-compose -f docker-compose.yml -f docker-compose.ci-testing.yml build | |
- name: 🚀 Run cypress (e2e tests) | |
run: docker-compose -f docker-compose.yml -f docker-compose.ci-testing.yml up --exit-code-from awt-cypress |