From 32ce5a5f8cbee8e3f78f5d5138b4bccaea467a0d Mon Sep 17 00:00:00 2001 From: Michael Date: Sun, 15 Sep 2024 23:38:12 +0200 Subject: [PATCH] disable example CI --- .github/{workflows => disabled}/ci-examples.yml | 0 .github/workflows/ci.yml | 3 ++- 2 files changed, 2 insertions(+), 1 deletion(-) rename .github/{workflows => disabled}/ci-examples.yml (100%) diff --git a/.github/workflows/ci-examples.yml b/.github/disabled/ci-examples.yml similarity index 100% rename from .github/workflows/ci-examples.yml rename to .github/disabled/ci-examples.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4be856df..242f366d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,6 +23,7 @@ jobs: cache: npm - name: Audit production dependencies run: npm audit --omit=dev --omit=optional + unit-test: strategy: fail-fast: false @@ -45,7 +46,7 @@ jobs: - name: Install dependencies run: npm ci - name: Unit test affected projects - run: npx nx affected -t unit-test --parallel=3 --coverage.enabled + run: npx nx affected -t unit-test --parallel=3 --verbose --coverage.enabled e2e: strategy: