feat: added logic to fill invalid value with null, so the chart don't have broken lines #15773
Workflow file for this run
This file contains hidden or 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: build-pipeline | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| - release/v* | |
| jobs: | |
| build-frontend: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| run: cd frontend && yarn install | |
| - name: Build frontend static files | |
| shell: bash | |
| run: | | |
| make build-frontend-static | |
| build-signoz: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup golang | |
| uses: actions/setup-go@v4 | |
| with: | |
| go-version: "1.22" | |
| - name: Build signoz image | |
| shell: bash | |
| run: | | |
| make build-signoz-amd64 | |
| build-signoz-community: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup golang | |
| uses: actions/setup-go@v4 | |
| with: | |
| go-version: "1.22" | |
| - name: Build signoz community image | |
| shell: bash | |
| run: | | |
| make build-signoz-community-amd64 |