dbi 604 handle replication slot creation getting stuck (#4439) #7389
This file contains hidden or 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 & Test UI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| paths: [ui/**, protos/**, buf.gen.yaml] | |
| jobs: | |
| build-test: | |
| name: Build & Test UI | |
| strategy: | |
| matrix: | |
| runner: [ubuntu-24.04] | |
| runs-on: ${{ matrix.runner }} | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6 | |
| - name: generate or hydrate protos | |
| uses: ./.github/actions/genprotos | |
| - name: Install Node.js dependencies | |
| working-directory: ui | |
| run: npm ci | |
| - name: Build | |
| working-directory: ui | |
| run: npm run build |