-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* adding playwright report summary for PRs * fix name * test adding on pull_request trigger * separating out inclusiveness analyzer * better comment title * only add comment if action is PR * Always report on failure
- Loading branch information
1 parent
8c1d45e
commit 4a22a74
Showing
3 changed files
with
24 additions
and
12 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
name: CI | ||
|
||
on: push | ||
on: [push, pull_request] | ||
|
||
env: | ||
# Creates and uploads sourcemaps to Application error telemetry, and save the built extension as an artifact | ||
|
@@ -238,13 +238,9 @@ jobs: | |
name: end-to-end-tests-report${{ matrix.PUBLIC_NAME }} | ||
path: end-to-end-tests/.report | ||
retention-days: 5 | ||
# Analyzer for checking for inclusive terminology in code. For more information, see | ||
# https://github.com/microsoft/InclusivenessAnalyzer | ||
Inclusiveness-Analyser-scan: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Inclusiveness Analyzer | ||
uses: microsoft/[email protected] | ||
- uses: daun/playwright-report-summary@v3 | ||
with: | ||
comment-title: "Playwright test results - MV${{matrix.MV}}" | ||
report-file: end-to-end-tests/.report/report.json | ||
report-tag: manifest-version-${{ matrix.MV }} | ||
if: (success() || failure()) && github.event_name == 'pull_request' |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
name: Inclusiveness Analyzer | ||
on: push | ||
jobs: | ||
# Analyzer for checking for inclusive terminology in code. For more information, see | ||
# https://github.com/microsoft/InclusivenessAnalyzer | ||
Inclusiveness-Analyser-scan: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Inclusiveness Analyzer | ||
uses: microsoft/[email protected] |
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