feat(posts-saga/matrix-client): update post saga to support media uploads, create optimistic posts, handle media mapping in events, and add test coverage for full functionality #3245
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: run-build | |
on: | |
pull_request: {} | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref }} | |
cancel-in-progress: true | |
jobs: | |
run-build: | |
runs-on: ubuntu-latest | |
env: | |
REACT_APP_INFURA_URL: ${{secrets.INFURA_URL}} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Common Setup | |
uses: ./.github/actions/common | |
- run: echo '//npm.pkg.github.com/:_authToken=${{secrets.GITHUB_TOKEN}}' >> .npmrc | |
- run: npm install --legacy-peer-deps | |
- name: Build project | |
run: npm run build |