From e394cfdcd8c39e19e573e35b3abfda0fe617ac2b Mon Sep 17 00:00:00 2001 From: zomars Date: Mon, 4 Jul 2022 18:26:27 -0600 Subject: [PATCH] Update checks --- .github/workflows/e2e-embed.yml | 13 ++++--------- .github/workflows/required-checks.yml | 14 +++++--------- 2 files changed, 9 insertions(+), 18 deletions(-) diff --git a/.github/workflows/e2e-embed.yml b/.github/workflows/e2e-embed.yml index 081077e776..e1019cfab8 100644 --- a/.github/workflows/e2e-embed.yml +++ b/.github/workflows/e2e-embed.yml @@ -4,15 +4,10 @@ on: branches: - main # Embed e2e - tests verify booking flow which is applicable to non-embed case also. So, don't ignore apps/web changes. - paths-ignore: - - apps/api/** - - apps/console/** - - apps/docs/** - - apps/swagger/** - - apps/website/** - - apps/web/public/** - - tests/** - - playwright/** + paths: + - 'apps/web/**' + - '!apps/web/public/**' + - 'packages/embeds/**' jobs: e2e-embed: timeout-minutes: 20 diff --git a/.github/workflows/required-checks.yml b/.github/workflows/required-checks.yml index e7834a07ab..189be3fa34 100644 --- a/.github/workflows/required-checks.yml +++ b/.github/workflows/required-checks.yml @@ -21,18 +21,14 @@ jobs: interval: 20s checks-yaml: | - job: lint - paths: - - apps/** - - packages/** - job: check-types paths: - - apps/** - - packages/** + - '**.tsx?' - job: e2e paths: - - apps/** - - packages/** + - '!apps/web/public/static/locales/**' - job: e2e-embed paths: - - apps/** - - packages/** + - 'apps/web/**' + - '!apps/web/public/**' + - 'packages/embeds/**'