Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
AwedIssac committed Oct 20, 2024
1 parent 77b9001 commit 61b28fe
Showing 1 changed file with 13 additions and 9 deletions.
22 changes: 13 additions & 9 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,22 +13,26 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Install Docker
run: |
sudo apt-get update
sudo apt-get install -y docker.io docker-compose
docker-compose --version
- name: Start Docker containers
working-directory: ./feedbacksystem
run: docker-compose up -d --build
- name: Install dependencies
run: npm ci
- name: Start Application
working-directory: ./modules/fbs-core/web
run: npm run start &
- name: Wait for services to be ready
run: sleep 30
- name: Clean previous Allure results
working-directory: ./modules/fbs-core/web
run: |
rm -rf allure-results
rm -rf allure-report
- name: Install Docker
run: |
sudo apt-get update
sudo apt-get install -y docker.io
sudo apt-get install -y docker-compose
- name: Start Docker containers
run: docker-compose -f docker-compose.yml up -d
- name: Wait for services to be ready
run: sleep 30
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Install Allure dependencies
Expand Down

0 comments on commit 61b28fe

Please sign in to comment.