Skip to content

Add retries to configureIndex and update operations #1012

Add retries to configureIndex and update operations

Add retries to configureIndex and update operations #1012

Workflow file for this run

name: Pull Request
on:
pull_request: {}
push:
branches:
- main
workflow_dispatch: {}
workflow_call:
secrets:
PINECONE_API_KEY:
required: true
jobs:
basic-hygiene:
name: Linting, formatting, documentation, etc
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup
uses: ./.github/actions/setup
- name: Prettier
run: npm run format
- name: Check for prettier changes
shell: bash
run: |
git diff --exit-code > /dev/null 2>&1 || EXIT_CODE=$?; echo "Exit code: $EXIT_CODE"
if [ $EXIT_CODE -ne 0 ]; then
echo "Prettier changes detected. Please run 'npm run format' and commit the changes."
echo "Summary of changes: "
git diff
exit 1
fi
- name: ESLint
run: npm run lint
- name: TypeDoc
uses: ./.github/actions/build-docs
testing:
uses: './.github/workflows/testing.yml'

Check failure on line 41 in .github/workflows/pr.yml

View workflow run for this annotation

GitHub Actions / Pull Request

Invalid workflow file

The workflow is not valid. In .github/workflows/pr.yml (Line: 41, Col: 11): Error from called workflow pinecone-io/pinecone-ts-client/.github/workflows/testing.yml@bb3a0f02338b670ad5b31f604ea412bea354d2f1 (Line: 29, Col: 5): Unexpected value 'unit-tests' In .github/workflows/pr.yml (Line: 41, Col: 11): Error from called workflow pinecone-io/pinecone-ts-client/.github/workflows/testing.yml@bb3a0f02338b670ad5b31f604ea412bea354d2f1 (Line: 45, Col: 5): Unexpected value 'integration-tests'
secrets: inherit