From cc0f1dde7949c12c45c6ccb5999a9be330dec98e Mon Sep 17 00:00:00 2001 From: Asep Haryana Saputra <90584806+MythEclipse@users.noreply.github.com> Date: Fri, 29 May 2026 15:00:00 +0700 Subject: [PATCH] ci: remove obsolete deploy.yml, replaced by notify-parent.yml --- .github/workflows/deploy.yml | 41 ------------------------------------ 1 file changed, 41 deletions(-) delete mode 100644 .github/workflows/deploy.yml diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml deleted file mode 100644 index 6ff931d..0000000 --- a/.github/workflows/deploy.yml +++ /dev/null @@ -1,41 +0,0 @@ -name: Build and Test - -on: - push: - branches: - - main - pull_request: - branches: - - main - -permissions: - contents: read - packages: write - -concurrency: - group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: true - -jobs: - test: - runs-on: ubuntu-latest - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - - name: Setup Bun - uses: oven-sh/setup-bun@v2 - with: - bun-version: latest - - - name: Install dependencies - run: bun install --frozen-lockfile - - - name: Run Tests - env: - BOT_TOKEN: "mock_token" - STORAGE_CHANNEL_ID: "123456" - BASE_URL: "http://localhost:3000" - DATABASE_URL: "postgresql://postgres:postgres@localhost:5432/postgres" - PORT: "3000" - run: bun run test