Bump io.qameta.allure:allure-junit-platform from 2.27.0 to 2.29.0 #120
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: Playwright Java CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '11' | |
distribution: 'temurin' | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Run Smoke Tests in Chromium | |
run: ./gradlew test --info -Dgroups=smoke | |
- name: Run Regression Tests in Chromium | |
run: ./gradlew test --info -Dgroups=regression | |
- name: Run Smoke Tests in Firefox | |
run: ./gradlew test --info -Dbrowser=firefox -Dgroups=smoke | |
- name: Run Regression Tests in Firefox | |
run: ./gradlew test --info -Dbrowser=firefox -Dgroups=regression | |
- name: Test marketplace action | |
uses: simple-elf/allure-report-action@master | |
if: always() | |
id: allure-report | |
with: | |
allure_results: build/allure-results | |
gh_pages: gh-pages | |
allure_report: allure-report | |
allure_history: allure-history | |
- name: Deploy report to Github Pages | |
if: always() | |
uses: peaceiris/actions-gh-pages@v2 | |
env: | |
PERSONAL_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
PUBLISH_BRANCH: gh-pages | |
PUBLISH_DIR: allure-history |