forked from kokonect-link/cherrypick
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feat: indexableに対応 (kokonect-link#449)
Co-authored-by: kozakura913 <[email protected]>
- Loading branch information
1 parent
a7b8df8
commit 2801c8c
Showing
33 changed files
with
1,597 additions
and
324 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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
url: 'http://cherrypick.local' | ||
|
||
# ローカルでテストするときにポートを被らないようにするためデフォルトのものとは変える(以下同じ) | ||
port: 61812 | ||
|
||
db: | ||
host: 127.0.0.1 | ||
port: 54312 | ||
db: test-cherrypick | ||
user: postgres | ||
pass: '' | ||
redis: | ||
host: 127.0.0.1 | ||
port: 56312 | ||
id: aidx | ||
|
||
opensearch: | ||
host: 127.0.0.1 | ||
port: 59200 | ||
user: 'admin' | ||
pass: 'eF53xwF4NYjrcXXwZ2CHgpwFL' | ||
ssl: false | ||
index: 'instancename' #なんでもいい |
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 |
---|---|---|
|
@@ -10,12 +10,14 @@ on: | |
# for permissions | ||
- packages/cherrypick-js/** | ||
- .github/workflows/test-backend.yml | ||
- .github/cherrypick/test*.yml | ||
pull_request: | ||
paths: | ||
- packages/backend/** | ||
# for permissions | ||
- packages/cherrypick-js/** | ||
- .github/workflows/test-backend.yml | ||
- .github/cherrypick/test*.yml | ||
jobs: | ||
unit: | ||
runs-on: ubuntu-latest | ||
|
@@ -112,3 +114,57 @@ jobs: | |
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
files: ./packages/backend/coverage/coverage-final.json | ||
|
||
opensearch-e2e: | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
node-version: [20.16.0] | ||
|
||
services: | ||
postgres: | ||
image: postgres:15 | ||
ports: | ||
- 54312:5432 | ||
env: | ||
POSTGRES_DB: test-cherrypick | ||
POSTGRES_HOST_AUTH_METHOD: trust | ||
redis: | ||
image: redis:7 | ||
ports: | ||
- 56312:6379 | ||
|
||
steps: | ||
- uses: actions/[email protected] | ||
with: | ||
submodules: true | ||
- name: Runs OpenSearch | ||
uses: esmarkowski/[email protected] | ||
with: | ||
version: 2.12.0 | ||
security-disabled: true | ||
opensearch_password: eF53xwF4NYjrcXXwZ2CHgpwFL | ||
port: 59200 | ||
- name: Install pnpm | ||
uses: pnpm/action-setup@v4 | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/[email protected] | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
cache: 'pnpm' | ||
- run: corepack enable | ||
- run: pnpm i --frozen-lockfile | ||
- name: Check pnpm-lock.yaml | ||
run: git diff --exit-code pnpm-lock.yaml | ||
- name: Copy Configure | ||
run: cp .github/cherrypick/test-opensearch.yml .config/test.yml | ||
- name: Build | ||
run: pnpm build | ||
- name: Test | ||
run: pnpm --filter backend test-and-coverage:e2e | ||
- name: Upload to Codecov | ||
uses: codecov/codecov-action@v4 | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
files: ./packages/backend/coverage/coverage-final.json |
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
16 changes: 16 additions & 0 deletions
16
packages/backend/migration/1726205819617-AddIsIndexable.js
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
/* | ||
* SPDX-FileCopyrightText: syuilo and misskey-project, yojo-art team | ||
* SPDX-License-Identifier: AGPL-3.0-only | ||
*/ | ||
|
||
export class AddIsIndexable1726205819617 { | ||
name = 'AddIsIndexable1726205819617' | ||
|
||
async up(queryRunner) { | ||
await queryRunner.query(`ALTER TABLE "user" ADD "isIndexable" boolean NOT NULL DEFAULT true`); | ||
} | ||
|
||
async down(queryRunner) { | ||
await queryRunner.query(`ALTER TABLE "user" DROP COLUMN "isIndexable"`); | ||
} | ||
} |
Oops, something went wrong.