From 091978f9144db91692682b7fefbece93adf177ba Mon Sep 17 00:00:00 2001 From: claude-ceo-assistant Date: Sun, 10 May 2026 14:28:24 +0000 Subject: [PATCH] chore: remove upstream CI workflows (mirror inertization per internal#233) --- .github/workflows/test.yml | 81 -------------------------------------- 1 file changed, 81 deletions(-) delete mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml deleted file mode 100644 index bd35e0e..0000000 --- a/.github/workflows/test.yml +++ /dev/null @@ -1,81 +0,0 @@ -name: test - -on: - push: - branches: - - main - - beta - pull_request: - merge_group: - workflow_dispatch: - -concurrency: - group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: true - -permissions: - contents: read - -jobs: - integration: - name: integration - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v6 - - - uses: actions/setup-node@v6 - with: - node-version-file: package.json - - - run: npm ci - - run: npm test - - end-to-end: - name: end-to-end - runs-on: ubuntu-latest - # do not run from forks, as forks don’t have access to repository secrets - if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.owner.login == github.event.pull_request.base.repo.owner.login - steps: - - uses: actions/checkout@v6 - - uses: actions/setup-node@v6 - with: - node-version-file: package.json - - run: npm ci - - run: npm run build - - uses: ./ # Uses the action in the root directory - id: test - with: - app-id: ${{ vars.TEST_APP_ID }} - private-key: ${{ secrets.TEST_APP_PRIVATE_KEY }} - - uses: octokit/request-action@v2.x - id: get-repository - env: - GITHUB_TOKEN: ${{ steps.test.outputs.token }} - with: - route: GET /installation/repositories - - run: echo '${{ steps.get-repository.outputs.data }}' - - end-to-end-proxy: - name: end-to-end with unreachable proxy - runs-on: ubuntu-latest - # do not run from forks, as forks don’t have access to repository secrets - if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.owner.login == github.event.pull_request.base.repo.owner.login - steps: - - uses: actions/checkout@v6 - - uses: actions/setup-node@v6 - with: - node-version-file: package.json - cache: 'npm' - - run: npm ci - - run: npm run build - - uses: ./ # Uses the action in the root directory - continue-on-error: true - id: test - env: - NODE_USE_ENV_PROXY: "1" - https_proxy: http://127.0.0.1:9 - with: - app-id: ${{ vars.TEST_APP_ID }} - private-key: ${{ secrets.TEST_APP_PRIVATE_KEY }} - - name: Assert action failed through unreachable proxy - run: test "${{ steps.test.outcome }}" = "failure"