From 5488cab69115f844c5dbd9a594cc82b4470d3faa Mon Sep 17 00:00:00 2001 From: fede Date: Thu, 28 Aug 2025 18:46:51 -0300 Subject: [PATCH] borrados archivos relacionados al ghactions --- .github/dependabot.yml | 13 ------------ .github/workflows/build-backend.yml | 31 ---------------------------- .github/workflows/build-frontend.yml | 31 ---------------------------- 3 files changed, 75 deletions(-) delete mode 100644 .github/dependabot.yml delete mode 100644 .github/workflows/build-backend.yml delete mode 100644 .github/workflows/build-frontend.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index 3b06db9..0000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,13 +0,0 @@ -# To get started with Dependabot version updates, you'll need to specify which -# package ecosystems to update and where the package manifests are located. -# Please see the documentation for all configuration options: -# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file - -version: 2 -updates: - - package-ecosystem: "npm" - directories: - - "/client" - - "/server" - schedule: - interval: "weekly" diff --git a/.github/workflows/build-backend.yml b/.github/workflows/build-backend.yml deleted file mode 100644 index f4f9aa0..0000000 --- a/.github/workflows/build-backend.yml +++ /dev/null @@ -1,31 +0,0 @@ -name: Build Backend (Server) - -on: - pull_request: - branches: - - main - -jobs: - build-backend: - runs-on: ubuntu-latest - defaults: - run: - working-directory: './server' - strategy: - matrix: - node-version: [20.x] - steps: - - name: Check out code - uses: actions/checkout@v4 - with: - fetch-depth: 0 - clean: true - - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v4 - with: - node-version: ${{ matrix.node-version }} - cache: 'npm' - cache-dependency-path: './server/package-lock.json' - - run: npm ci - - run: npm run build diff --git a/.github/workflows/build-frontend.yml b/.github/workflows/build-frontend.yml deleted file mode 100644 index ac1a8e2..0000000 --- a/.github/workflows/build-frontend.yml +++ /dev/null @@ -1,31 +0,0 @@ -name: Build Frontend (Client) - -on: - pull_request: - branches: - - main - -jobs: - build-frontend: - runs-on: ubuntu-latest - defaults: - run: - working-directory: './client' - strategy: - matrix: - node-version: [20.x] - steps: - - name: Check out code - uses: actions/checkout@v4 - with: - fetch-depth: 0 - clean: true - - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v4 - with: - node-version: ${{ matrix.node-version }} - cache: 'npm' - cache-dependency-path: './client/package-lock.json' - - run: npm ci - - run: npm run build