update log level to error for e2e tests (#1599) #1
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: Indexer Build, Test & Coverage | |
on: # yamllint disable-line rule:truthy | |
pull_request: | |
paths: | |
- 'indexer/**' | |
push: | |
branches: | |
- main | |
- 'release/indexer/v[0-9]+.[0-9]+.x' # e.g. release/indexer/v0.1.x | |
- 'release/indexer/v[0-9]+.x' # e.g. release/indexer/v1.x | |
paths: | |
- 'indexer/**' | |
# Ensure only a single instance of this workflow is running, and cancel any that are in-progress | |
# before this workflow instance starts | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
# Build and run tests | |
test: | |
uses: ./.github/workflows/indexer-reusable-build-and-run-with-pg-redis-kafka.yml | |
with: | |
COMMAND: pnpm run test:all | |
secrets: inherit | |
# TODO(roy): Temporarily disabled. Doesn't run on CI for some reason. | |
# Build and run coverage | |
# coverage: | |
# uses: ./.github/workflows/indexer-reusable-build-and-run-with-pg-redis-kafka.yml | |
# with: | |
# COMMAND: pnpm run coverage:all | |
# secrets: inherit |