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