feat: enable the new where clause for all the log based queries #3570
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: Jest Coverage - changed files | |
on: | |
pull_request: | |
branches: develop | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
ref: "refs/heads/develop" | |
token: ${{ secrets.GITHUB_TOKEN }} # Provide the GitHub token for authentication | |
- name: Fetch branch | |
run: git fetch origin ${{ github.event.pull_request.head.ref }} | |
- run: | | |
git checkout ${{ github.event.pull_request.head.sha }} | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
- name: Install dependencies | |
run: cd frontend && npm install -g yarn && yarn | |
- name: npm run test:changedsince | |
run: cd frontend && npm run i18n:generate-hash && npm run test:changedsince |