From d022826178d7a7d59202f4186d267016a030b6c9 Mon Sep 17 00:00:00 2001 From: Austin DeNoble Date: Sat, 13 Jan 2024 15:21:21 -0500 Subject: [PATCH] remove extra integration test cleanup, remove publishing from merge workflow for now --- .github/workflows/merge.yml | 19 +++++++++++++++---- .github/workflows/testing.yml | 23 ----------------------- 2 files changed, 15 insertions(+), 27 deletions(-) diff --git a/.github/workflows/merge.yml b/.github/workflows/merge.yml index 53dbb827..1fa8b1db 100644 --- a/.github/workflows/merge.yml +++ b/.github/workflows/merge.yml @@ -7,7 +7,18 @@ on: workflow_dispatch: {} jobs: - build-and-publish-docs: - name: Build and publish docs to sdk-docs - uses: ./.github/workflows/build-and-publish-docs.yml - secrets: inherit + build-docs: + name: Build sdk-docs + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Setup + uses: ./.github/actions/setup + - name: Build docs + uses: ./github/actions/build-docs + + # build-and-publish-docs: + # name: Build and publish docs to sdk-docs + # uses: ./.github/workflows/build-and-publish-docs.yml + # secrets: inherit diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 74abb492..36ad332b 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -68,29 +68,6 @@ jobs: PINECONE_CONTROLLER_HOST: 'https://api-staging.pinecone.io' run: ${{ matrix.config.runner }} run test:integration:${{ matrix.config.jest_env }} - integration-test-cleanup: - name: Clean up integration tests - if: always() - needs: [integration-tests] - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - - name: Setup Node - uses: actions/setup-node@v3 - with: - node-version: 18.x - registry-url: 'https://registry.npmjs.org' - - name: Install npm packages - run: | - npm install --ignore-scripts - shell: bash - - name: Run integration cleanup command - env: - CI: true - PINECONE_API_KEY: ${{ secrets.PINECONE_API_KEY }} - run: npm run test:integration:cleanup - typescript-compilation-tests: name: TS compile runs-on: ubuntu-latest