From 6476d20faa33b29043cd23898190616dd7fc72cd Mon Sep 17 00:00:00 2001 From: nuyue Date: Sun, 12 Jul 2026 16:03:35 +0800 Subject: [PATCH] chore: remove GitHub Actions workflow --- .github/workflows/dev.yml | 37 ------------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 .github/workflows/dev.yml diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml deleted file mode 100644 index e6f9b13..0000000 --- a/.github/workflows/dev.yml +++ /dev/null @@ -1,37 +0,0 @@ -name: Development Setup - -on: - workflow_dispatch: - -jobs: - setup-dev: - runs-on: ubuntu-latest - - steps: - - name: Checkout code - uses: actions/checkout@v4 - - - name: Setup Go - uses: actions/setup-go@v4 - with: - go-version: '1.19' - - - name: Setup Node.js - uses: actions/setup-node@v3 - with: - node-version: '18' - - - name: Install frontend dependencies - run: | - cd frontend - npm ci - - - name: Install backend dependencies - run: | - cd backend - go mod download - - - name: Build frontend - run: | - cd frontend - npm run build