Bump ol from 10.2.1 to 10.3.1 in /frontend #835
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: End2End Testing with Cypress | |
# we run testing for both master and dev branches (but only on pull requests) | |
on: | |
pull_request: | |
branches: | |
- 'master' | |
- 'dev' | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
# Checkout the source code | |
- name: 🛎️ Checkout | |
uses: actions/checkout@v4 | |
- name: Free Disk Space (Ubuntu) | |
uses: jlumbroso/free-disk-space@main | |
with: | |
tool-cache: false | |
docker-images: false | |
- name: create dumy files for ./git/HEAD and ./git/refs/heads/ | |
run: | | |
mkdir -p .git/refs/heads | |
touch .git/HEAD | |
touch .git/refs/heads/master | |
- 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 |