From 8fa05a21477d4bc4d664ad6cef759da612b56efa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mi=C5=82osz=20Szekiel?= <12242002+mszekiel@users.noreply.github.com> Date: Thu, 5 Sep 2024 18:27:35 +0200 Subject: [PATCH] fix: add test as CI requirement --- .github/workflows/main.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index eee924412..cf03f67c3 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -2,9 +2,10 @@ name: "Main - Lint/Build/Tests" on: push: - branches: [main] + branches: [main, master] pull_request: - types: [opened, reopened] + # TODO: Remove jonas-jonas/elementsv1 when we merge the branch + branches: [main, master, jonas-jonas/elementsv1] jobs: deploy: @@ -19,7 +20,3 @@ jobs: - run: npm ci - run: npx playwright install --with-deps - run: npx nx run-many --target=build --all - - name: Publish to Chromatic - uses: chromaui/action@v1 - with: - projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}