Make operators reverse on "NOT" optional, disabled by default to preserve orignal query #334
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: CodeCov Report | |
on: | |
push: | |
branches: [ master ] | |
release: | |
types: [ published ] | |
pull_request: | |
branches: [ master ] | |
workflow_dispatch: | |
jobs: | |
run: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v3 | |
with: | |
version: 7 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
#cache: 'pnpm' | |
- run: pnpm i | |
- run: echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p | |
- run: pnpm test | |
- uses: codecov/codecov-action@v4 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
directory: ./packages/tests/coverage/ |