fix(react-bindings): multiple client async start handling while loading #83
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: KONG | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: [main] | |
push: | |
branches: [main] | |
env: | |
test_api_key: ${{ secrets.KONG_SERVER_SDK_KEY }} | |
test_client_key: ${{ secrets. KONG_CLIENT_SDK_KEY }} | |
repo_pat: ${{ secrets.KONG_FINE_GRAINED_REPO_PAT }} | |
FORCE_COLOR: true | |
jobs: | |
KONG: | |
timeout-minutes: 10 | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
sdk: [js-mono, js-mono-on-device-eval] | |
steps: | |
- name: Get KONG | |
run: git clone https://oauth2:$repo_pat@github.com/statsig-io/kong.git . | |
- name: Install Deps | |
run: npm install | |
- name: Setup SDK | |
run: npm run kong -- setup ${{ matrix.sdk }} -v | |
- name: Build Bridge Image | |
run: npm run kong -- build ${{ matrix.sdk }} -v | |
- name: Run Tests | |
run: npm run kong -- test ${{ matrix.sdk }} -v -r |