From 859aaafc4ac074822f6fcd0beffb616a78c37e9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roberto=20Rodr=C3=ADguez=20M=C3=A1rquez?= Date: Wed, 10 May 2023 08:14:10 +0200 Subject: [PATCH] cambios pipeline --- .github/workflows/pipeline.yaml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pipeline.yaml b/.github/workflows/pipeline.yaml index 436cea7..7cdf7d1 100644 --- a/.github/workflows/pipeline.yaml +++ b/.github/workflows/pipeline.yaml @@ -14,9 +14,19 @@ jobs: fetch-depth: 0 - uses: actions/setup-node@v3 with: - node-version: 16 + node-version: '14' - name: Instalar dependencias - run: npm install + run: npm install --no-audit --no-fund --no-optional - name: Lint run: npm run eslint + - name: Build + run: npm run build + - name: Test + run: npm test + - name: E2E tests + uses: cypress-io/github-action@v2 + with: + command: npm run test:e2e + start: npm run start-test + wait-on: http://localhost:5000