Fixed 'update search results' behavior when receiving a new message #9
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: Continuous Integration | |
on: | |
pull_request: | |
branches: [main] | |
types: [labeled, opened, synchronize, reopened] | |
jobs: | |
build: | |
name: Build, test & lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Use Node 20 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Install pnpm 9.8.0 | |
uses: pnpm/[email protected] | |
with: | |
version: 9.8.0 | |
- name: Install pnpm dependencies (with cache) | |
uses: covbot/pnpm-install-with-cache@v1 | |
- name: Build, test & lint | |
run: pnpm ci -- --filter=...[${{ github.event.pull_request.base.sha }}...${{ github.sha }}] | |
changeset: | |
name: Check for changeset existence | |
runs-on: ubuntu-latest | |
if: ${{ !contains(github.event.pull_request.labels.*.name, 'chore') }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Use Node 20 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Install pnpm 9.8.0 | |
uses: pnpm/[email protected] | |
with: | |
version: 9.8.0 | |
- name: Install pnpm dependencies (with cache) | |
uses: covbot/pnpm-install-with-cache@v1 | |
- name: Danger | |
run: pnpm danger ci | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |