From 77db4a4d4b98200cdaa76589fe79a36c3561a9c7 Mon Sep 17 00:00:00 2001 From: claude-ceo-assistant Date: Sun, 10 May 2026 14:27:46 +0000 Subject: [PATCH] chore: remove upstream CI workflows (mirror inertization per internal#233) --- .github/workflows/proxy.yml | 52 ------------------------------------- 1 file changed, 52 deletions(-) delete mode 100644 .github/workflows/proxy.yml diff --git a/.github/workflows/proxy.yml b/.github/workflows/proxy.yml deleted file mode 100644 index e111231..0000000 --- a/.github/workflows/proxy.yml +++ /dev/null @@ -1,52 +0,0 @@ -name: proxy - -on: - pull_request: - paths-ignore: - - '**.md' - push: - branches: - - main - - releases/* - paths-ignore: - - '**.md' - -jobs: - test-proxy: - runs-on: ubuntu-latest - container: - image: ubuntu:latest - options: --dns 127.0.0.1 - services: - squid-proxy: - image: ubuntu/squid:latest - ports: - - 3128:3128 - env: - https_proxy: http://squid-proxy:3128 - steps: - - uses: actions/checkout@v6 - - name: Clear tool cache - run: rm -rf $RUNNER_TOOL_CACHE/* - - name: Setup node 24 - uses: ./ - with: - node-version: 24.x - - name: Verify node and npm - run: __tests__/verify-node.sh 24 - - test-bypass-proxy: - runs-on: ubuntu-latest - env: - https_proxy: http://no-such-proxy:3128 - no_proxy: api.github.com,github.com,nodejs.org,registry.npmjs.org,*.s3.amazonaws.com,s3.amazonaws.com - steps: - - uses: actions/checkout@v6 - - name: Clear tool cache - run: rm -rf $RUNNER_TOOL_CACHE/* - - name: Setup node 24 - uses: ./ - with: - node-version: 24 - - name: Verify node and npm - run: __tests__/verify-node.sh 24