mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-27 23:27:57 +00:00
* feat: added license manager and feature flags * feat: completed org domain api * chore: checking in saml auth handler code * feat: added signup with sso * feat: added login support for admins * feat: added pem support for certificate * ci(build-workflow): 👷 include EE query-service * fix: 🐛 update package name * chore(ee): 🔧 LD_FLAGS related changes Signed-off-by: Prashant Shahi <prashant@signoz.io> Co-authored-by: Prashant Shahi <prashant@signoz.io> Co-authored-by: nityanandagohain <nityanandagohain@gmail.com>
49 lines
1.1 KiB
YAML
49 lines
1.1 KiB
YAML
name: build-pipeline
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- develop
|
|
- main
|
|
- release/v*
|
|
|
|
jobs:
|
|
build-frontend:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
- name: Install dependencies
|
|
run: cd frontend && yarn install
|
|
- name: Run ESLint
|
|
run: cd frontend && npm run lint
|
|
- name: Run Jest
|
|
run: cd frontend && npm run jest
|
|
- name: TSC
|
|
run: yarn tsc
|
|
working-directory: ./frontend
|
|
- name: Build frontend docker image
|
|
shell: bash
|
|
run: |
|
|
make build-frontend-amd64
|
|
|
|
build-query-service:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
- name: Build query-service image
|
|
shell: bash
|
|
run: |
|
|
make build-query-service-amd64
|
|
|
|
build-ee-query-service:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
- name: Build EE query-service image
|
|
shell: bash
|
|
run: |
|
|
make build-ee-query-service-amd64
|