Respect order, number to skip and number to take of chat messages at underlying DB level rather than higher #595
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: copilot-build-frontend | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: ["main"] | |
paths: | |
- "webapp/**" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
webapp: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js 18 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
cache: "yarn" | |
cache-dependency-path: "webapp/yarn.lock" | |
- name: Run yarn install, yarn build, & yarn format | |
run: | | |
#!/usr/bin/env bash | |
set -e # exit with nonzero exit code if anything fails | |
echo "Running yarn install, yarn build, & yarn format" | |
yarn install --frozen-lockfile # install dependencies and ensure lockfile is unchanged. | |
yarn build # run build script | |
yarn format # run format script | |
working-directory: webapp |