publish test results #953
Workflow file for this run
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: build | ||
on: | ||
push: | ||
branches: | ||
- '*' | ||
paths-ignore: | ||
- 'examples/**' | ||
pull_request: | ||
branches: | ||
- main | ||
workflow_dispatch: {} | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: setup | ||
uses: ./.github/workflows/shared/setup | ||
- name: build | ||
run: yarn ci:build | ||
e2e: | ||
if: ${{ !startsWith(github.ref_name, 'dependabot') } | ||
Check failure on line 28 in .github/workflows/build.yml GitHub Actions / buildInvalid workflow file
|
||
runs-on: ubuntu-latest | ||
needs: build | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: setup | ||
uses: ./.github/workflows/shared/setup | ||
- name: e2e | ||
run: | | ||
yarn ci:build | ||
yarn ci:e2e | ||
- uses: dorny/test-reporter@v1 | ||
if: ${{ (success() || failure()) && github.repository == 'mistic100/Photo-Sphere-Viewer' }} | ||
with: | ||
name: test-results | ||
path: cypress/reports/junit/*.xml | ||
reporter: java-junit | ||
# build-doc: | ||
# runs-on: ubuntu-latest | ||
# needs: build | ||
# steps: | ||
# - uses: actions/checkout@v4 | ||
# - name: setup | ||
# uses: ./.github/workflows/shared/setup | ||
# - name: build | ||
# run: yarn ci:build-doc |