Skip to content

Commit 5498eca

Browse files
committed
fix: update QA workflow to trigger on both pull requests and pushes
- Modified the conditions for the Build and Build Docker container steps in the QA workflow to execute on both pull request and push events, enhancing the CI process.
1 parent a6d4d05 commit 5498eca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/qa.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ jobs:
145145
echo "VERSION=$VERSION" >> $GITHUB_ENV
146146
147147
- name: Build
148-
if: github.event_name == 'pull_request'
148+
if: github.event_name == 'pull_request' || github.event_name == 'push'
149149
id: qa-tests
150150
run: |
151151
bun run check-types
@@ -154,7 +154,7 @@ jobs:
154154
NEXT_PUBLIC_POSTHOG_KEY: ${{ secrets.NEXT_PUBLIC_POSTHOG_KEY }}
155155

156156
- name: Build Docker container
157-
if: github.event_name == 'pull_request'
157+
if: github.event_name == 'pull_request' || github.event_name == 'push'
158158
run: |
159159
bun run docker
160160

0 commit comments

Comments
 (0)