From d2c55b6d04a53542062ecab549eb02cba1e63248 Mon Sep 17 00:00:00 2001 From: Sergio Delgado <16917440+sergiodelgado@users.noreply.github.com> Date: Fri, 7 Nov 2025 23:28:11 -0300 Subject: [PATCH] =?UTF-8?q?chore(ci):=20agrega=20workflow=20de=20validaci?= =?UTF-8?q?=C3=B3n=20inicial?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..f31d1ba --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,13 @@ +name: CI +on: [push, pull_request] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: 20 + - run: echo "🔍 Ejecutando validaciones básicas..." + - run: echo "✅ Proyecto verificado con éxito"