Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/composite queries backend #416

Merged
merged 10 commits into from
Sep 25, 2024
5 changes: 2 additions & 3 deletions .github/workflows/integration-test.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
name: Cypress Tests

on:
push:
branches:
- feature/integration-testing
pull_request:
branches:
- dev
Expand Down Expand Up @@ -41,6 +38,7 @@ jobs:
sudo mysql --user=${{ secrets.CYPRESS_DB_USERNAME }} --password=${{ secrets.CYPRESS_DB_PASSWORD }} < sakila/sakila-schema.sql;
sudo mysql --user=${{ secrets.CYPRESS_DB_USERNAME }} --password=${{ secrets.CYPRESS_DB_PASSWORD }} < sakila/sakila-data.sql;
sudo mysql -e 'SHOW DATABASES;' -h 127.0.0.1 --port=3306 --user=${{ secrets.CYPRESS_DB_USERNAME }} --password=${{ secrets.CYPRESS_DB_PASSWORD }}

- name: Install Dependencies Backend
run: |
pnpm install --frozen-lockfile
Expand Down Expand Up @@ -70,6 +68,7 @@ jobs:
- name: Install Dependencies App
run: |
pnpm install --frozen-lockfile
pnpm cypress install
working-directory: query-builder-app

- name: Make frontend env file
Expand Down
Loading