97c531aa42
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Michael Telatynski <7t3chguy@gmail.com>
27 lines
830 B
YAML
27 lines
830 B
YAML
name: Build downstream artifacts
|
|
on:
|
|
merge_group:
|
|
types: [checks_requested]
|
|
|
|
pull_request: {}
|
|
|
|
# For now at least, we don't run this or the cypress-tests against pushes
|
|
# to develop or master.
|
|
#
|
|
# Note that if we later choose to do so, we'll need to find a way to stop
|
|
# the results in Cypress Cloud from clobbering those from the 'develop'
|
|
# branch of matrix-react-sdk.
|
|
#
|
|
#push:
|
|
# branches: [develop, master]
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
jobs:
|
|
build-element-web:
|
|
name: Build element-web
|
|
uses: matrix-org/matrix-react-sdk/.github/workflows/element-web.yaml@v3.84.1
|
|
with:
|
|
matrix-js-sdk-sha: ${{ github.sha }}
|
|
react-sdk-repository: matrix-org/matrix-react-sdk
|