From 56143fc03dba30d6387189a06dbaa34e4bc849d6 Mon Sep 17 00:00:00 2001 From: claude-ceo-assistant Date: Sun, 10 May 2026 14:28:17 +0000 Subject: [PATCH] chore: remove upstream CI workflows (mirror inertization per internal#233) --- .github/workflows/ci.yml | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index 97bf123..0000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,19 +0,0 @@ -on: - push: {branches: master} - pull_request: {branches: master} - -jobs: - ci: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v1 - with: {node-version: 13.x} - - uses: actions/cache@v1 - with: - path: ~/.npm - key: ${{runner.os}}-npm-${{hashFiles('**/package-lock.json')}} - restore-keys: ${{runner.os}}-npm- - - run: npm ci - - run: npm run style:check - - run: npm test