Skip to content

publish test results #953

publish test results

publish test results #953

Workflow file for this run

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

View workflow run for this annotation

GitHub Actions / build

Invalid workflow file

The workflow is not valid. .github/workflows/build.yml (Line: 28, Col: 9): The expression is not closed. An unescaped ${{ sequence was found, but the closing }} sequence was not found.
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