-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build(app): fix build errors in the ci
- Loading branch information
1 parent
8b8c58b
commit 1f7634a
Showing
11 changed files
with
21 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,7 @@ jobs: | |
MYSQL_DATABASE: test | ||
MYSQL_PORT: 3306 | ||
DATABASE_URL: mysql://root:[email protected]:3306/test | ||
ADMIN_PASSWORD: admin_password | ||
TEST_DATABASE_URL: mysql://root:[email protected]:3306/test | ||
CONVERTKIT_API_KEY: api_key | ||
CONVERTKIT_FORM_ID: form_id | ||
outputs: | ||
|
@@ -43,7 +43,9 @@ jobs: | |
run: sudo systemctl start mysql.service | ||
|
||
- name: Run tests | ||
run: yarn test | ||
run: | | ||
yarn prisma migrate dev --schema=packages/domain/prisma/schema.prisma | ||
yarn test | ||
preview-frontend: | ||
runs-on: ubuntu-latest | ||
|
@@ -56,7 +58,7 @@ jobs: | |
- name: Install Yarn 4 | ||
run: | | ||
corepack enable | ||
yarn set version 4.2.1 | ||
yarn set version 4.2.2 | ||
- name: Install Vercel CLI | ||
run: npm install --global vercel@latest | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,8 +23,5 @@ | |
{ | ||
"path": "../../packages/domain" | ||
}, | ||
{ | ||
"path": "../../packages/database" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters