From 1d52a8b1d9867d3f0d5bcca5e30b4bd4a3646012 Mon Sep 17 00:00:00 2001 From: Andreas Kluge Svendsrud <89779148+kludge7@users.noreply.github.com> Date: Fri, 5 Apr 2024 14:09:36 +0200 Subject: [PATCH] Update ci-pipeline.yml --- .github/workflows/ci-pipeline.yml | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) diff --git a/.github/workflows/ci-pipeline.yml b/.github/workflows/ci-pipeline.yml index e5a16b4..7c219c8 100644 --- a/.github/workflows/ci-pipeline.yml +++ b/.github/workflows/ci-pipeline.yml @@ -36,24 +36,8 @@ jobs: - name: Run unit tests (Failures Ignored) run: npm run test:unit || echo "No unit tests found or other test errors, but continuing..." - - name: Prepare for E2E tests - run: | - # Add any setup steps required before running E2E tests. For example: - # - Starting up a test server - # - Setting up test databases - # - Configuring environment variables - echo "Environment setup for E2E tests..." - - name: Run E2E tests - run: npm run test:e2e + run: npm run test:e2e:dev - name: Build run: npm run build - - - name: Teardown E2E Test Environment - run: | - # Add commands to stop the test server or perform other cleanup tasks. For example: - # - Stopping a local test server - # - Clearing test databases - # - Removing temporary files or configurations - echo "Tearing down E2E test environment..."