fix: remove total number of webhook limit #3241
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: Main | |
on: | |
push: | |
branches: [main, v2] | |
pull_request: | |
branches: [main, v2] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
lint: | |
timeout-minutes: 8 | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
cache-dependency-path: 'yarn.lock' | |
cache: 'yarn' | |
- name: Install root dependencies | |
run: yarn install | |
- name: Build dependencies | |
run: make ci-build | |
- name: Install core libs | |
run: sudo apt-get install --yes curl bc | |
- name: Run lint + type check | |
run: make ci-lint | |
unit: | |
timeout-minutes: 8 | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
cache-dependency-path: 'yarn.lock' | |
cache: 'yarn' | |
- name: Install root dependencies | |
run: yarn install | |
- name: Build dependencies | |
run: make ci-build | |
- name: Run unit tests | |
run: make ci-unit | |
integration: | |
timeout-minutes: 8 | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
cache-dependency-path: 'yarn.lock' | |
cache: 'yarn' | |
- name: Install root dependencies | |
run: yarn install | |
- name: Expose GitHub Runtime | |
uses: crazy-max/ghaction-github-runtime@v2 | |
- name: Spin up docker services | |
run: | | |
docker buildx create --use --driver=docker-container | |
docker buildx bake -f ./docker-compose.ci.yml --set *.cache-to="type=gha" --set *.cache-from="type=gha" --load | |
- name: Build dependencies | |
run: make ci-build | |
- name: Run integration tests | |
run: make ci-int | |
otel-smoke-test: | |
timeout-minutes: 8 | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install required tooling | |
env: | |
DEBIAN_FRONTEND: noninteractive | |
run: | | |
sudo apt-get install -y apt-transport-https ca-certificates curl gnupg | |
curl -fsSL 'https://packages.clickhouse.com/rpm/lts/repodata/repomd.xml.key' | sudo gpg --dearmor -o /usr/share/keyrings/clickhouse-keyring.gpg | |
ARCH=$(dpkg --print-architecture) | |
echo "deb [signed-by=/usr/share/keyrings/clickhouse-keyring.gpg arch=${ARCH}] https://packages.clickhouse.com/deb stable main" | sudo tee /etc/apt/sources.list.d/clickhouse.list | |
sudo apt-get update | |
sudo apt-get install --yes curl bats clickhouse-client | |
- name: Run Smoke Tests | |
working-directory: ./smoke-tests/otel-collector | |
run: bats . |