Skip to content

Commit

Permalink
ChangedGithubActions
Browse files Browse the repository at this point in the history
  • Loading branch information
akshayp7 committed Feb 24, 2024
1 parent 8cd269a commit 37918f9
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,21 @@ jobs:
- name: Run tests
run: npm run test:serial
env:
npm_config_ENV: "qa"
npm_config_ENV: "qa"


# Define a job named 'create-report-zip'
create-report-zip:
# Specify the operating system for this job
runs-on: ubuntu-latest

# Define dependencies to ensure it runs after 'build' job completes
needs: build

# Define the steps to execute in this job
steps:
# Step to zip the html-report folder
- name: Zip HTML report
run: |
cd playwright-typescript-playwright-test
zip -r html-report.zip html-report

0 comments on commit 37918f9

Please sign in to comment.