From 519c462be55fa7f44afbceb908ec2ca6373da0fb Mon Sep 17 00:00:00 2001 From: claude-ceo-assistant Date: Sun, 10 May 2026 14:27:41 +0000 Subject: [PATCH] chore: remove upstream CI workflows (mirror inertization per internal#233) --- .github/workflows/build-test.yml | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 .github/workflows/build-test.yml diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml deleted file mode 100644 index 5d7c6c1..0000000 --- a/.github/workflows/build-test.yml +++ /dev/null @@ -1,32 +0,0 @@ -name: build-test - -on: - pull_request: - paths-ignore: - - '**.md' - push: - branches: - - master - - releases/* - paths-ignore: - - '**.md' - -jobs: - build: - runs-on: ${{ matrix.operating-system }} - strategy: - matrix: - operating-system: [ubuntu-latest, windows-latest, macos-latest] - steps: - - uses: actions/checkout@v2 - - name: Setup node 12 - uses: actions/setup-node@v1 - with: - node-version: 12.x - - run: npm ci - - run: npm run build - - run: npm run format-check - - run: npm test - - name: Verify no unstaged changes - if: runner.os != 'windows' - run: __tests__/verify-no-unstaged-changes.sh