Files
mostlymatter/.github/workflows/webapp-ci-pr.yml
Claudio Costa 8f74daa9b8 [MM-62409] Fix webapp coverage upload for master runs (#31320)
* Fix webapp coverage upload for master runs

* Only pass codecov token

* Update to trigger workflow
2025-06-10 08:37:04 +02:00

23 строки
582 B
YAML

name: Web App CI PR
on:
pull_request:
paths:
- "webapp/**"
- "e2e-tests/**"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
# This file just imports the template yml
# and runs it with concurrency. We have to do this in this way
# because the concurrency label cannot be added conditionally
# and it _always_ cancels pending workflows. So master CI builds
# always kept getting canceled.
jobs:
pr-ci:
uses: ./.github/workflows/webapp-ci-template.yml
secrets:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}