-
-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'vnext' into mk/add-analytics
- Loading branch information
Showing
92 changed files
with
2,970 additions
and
524 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
github: [tankerkiller125,katosdev] | ||
github: [tankerkiller125,katosdev,tonyaellie] |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ jobs: | |
|
||
- uses: pnpm/[email protected] | ||
with: | ||
version: 6.0.2 | ||
version: 9.12.2 | ||
|
||
- name: Install dependencies | ||
run: pnpm install --shamefully-hoist | ||
|
@@ -32,6 +32,20 @@ jobs: | |
integration-tests: | ||
name: Integration Tests | ||
runs-on: ubuntu-latest | ||
services: | ||
postgres: | ||
image: postgres:17 | ||
env: | ||
POSTGRES_USER: homebox | ||
POSTGRES_PASSWORD: homebox | ||
POSTGRES_DB: homebox | ||
ports: | ||
- 5432:5432 | ||
options: >- | ||
--health-cmd pg_isready | ||
--health-interval 10s | ||
--health-timeout 5s | ||
--health-retries 5 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
@@ -54,11 +68,61 @@ jobs: | |
|
||
- uses: pnpm/[email protected] | ||
with: | ||
version: 6.0.2 | ||
version: 9.12.2 | ||
|
||
- name: Install dependencies | ||
run: pnpm install | ||
working-directory: frontend | ||
|
||
- name: Run Integration Tests | ||
run: task test:ci | ||
integration-tests-pgsql: | ||
strategy: | ||
matrix: | ||
database_version: [17,16,15] | ||
name: Integration Tests PGSQL ${{ matrix.database_version }} | ||
runs-on: ubuntu-latest | ||
services: | ||
postgres: | ||
image: postgres:${{ matrix.database_version }} | ||
env: | ||
POSTGRES_USER: homebox | ||
POSTGRES_PASSWORD: homebox | ||
POSTGRES_DB: homebox | ||
options: >- | ||
--health-cmd pg_isready | ||
--health-interval 10s | ||
--health-timeout 5s | ||
--health-retries 5 | ||
ports: | ||
- 5432:5432 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Install Task | ||
uses: arduino/setup-task@v1 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Set up Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: "1.21" | ||
|
||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 18 | ||
|
||
- uses: pnpm/[email protected] | ||
with: | ||
version: 9.12.2 | ||
|
||
- name: Install dependencies | ||
run: pnpm install | ||
working-directory: frontend | ||
|
||
- name: Run Integration Tests | ||
run: task test:ci:postgresql |
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
Oops, something went wrong.