Skip to content

update e2e

update e2e #6

name: E2E Tests

Check failure on line 1 in .github/workflows/e2e-all-versions.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/e2e-all-versions.yml

Invalid workflow file

(Line: 59, Col: 9): 'run' is already defined
on: workflow_dispatch
jobs:
e2e-tests:
name: Run E2E Tests with TestCafe
runs-on: ubuntu-latest
strategy:
matrix:
host-app-version: [ "0.8.5", "0.9.2", "0.10.3", "0.10.4", "1.0.0", "1.0.5", "1.1.3", "latest" ]
guest-app-version: [ "0.8.5", "0.9.2", "0.10.3", "0.10.4", "1.0.0", "1.0.5", "1.1.3", "latest" ]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20.19.5' # Adjust this as per project requirements
- name: Install Dependencies for Host App
working-directory: e2e/all-versions/host-app
run: |
npm install @adobe/uix-host-react@${{ matrix.host-app-version }}
npm install @adobe/uix-host@${{ matrix.host-app-version }}
npm install @adobe/uix-core@${{ matrix.host-app-version }}
npm install
- name: Install Dependencies for Guest App
working-directory: e2e/all-versions/guest-app
run: |
npm install @adobe/uix-guest@${{ matrix.guest-app-version }}
npm install @adobe/uix-core@${{ matrix.guest-app-version }}
npm install
- name: Start Host App
working-directory: e2e/all-versions/host-app
run: |
npm start &
- name: Start Guest App
working-directory: e2e/all-versions/guest-app
run: |
npm start &
- name: Wait for Applications to be Ready
run: |
echo "Waiting for services to start..."
sleep 10 # Adjust the time based on how long the apps take to start
- name: Wait for servers to start
run: |
npx wait-on http://localhost:3000 http://localhost:3002 --timeout 60000 - name: Run E2E Tests with TestCafe
working-directory: e2e/all-versions/tests
run: |
npm install
npm test