From 38f259c65f7c2345af8cf23d59598a84d583f169 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roberto=20Rodr=C3=ADguez=20M=C3=A1rquez?= Date: Tue, 9 May 2023 08:45:57 +0200 Subject: [PATCH] =?UTF-8?q?nuevo=20pipeline=20a=C3=B1adido?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/pipeline.yaml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/pipeline.yaml diff --git a/.github/workflows/pipeline.yaml b/.github/workflows/pipeline.yaml new file mode 100644 index 0000000..436cea7 --- /dev/null +++ b/.github/workflows/pipeline.yaml @@ -0,0 +1,22 @@ +name: deployment-pipeline + +on: + push: + branches: + - main + +jobs: + deploy: + runs-on: ubuntu-22.04 + steps: + - uses: actions/checkout@v2 + with: + fetch-depth: 0 + - uses: actions/setup-node@v3 + with: + node-version: 16 + - name: Instalar dependencias + run: npm install + - name: Lint + run: npm run eslint +