-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
150 changed files
with
6,489 additions
and
940 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
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
Oops, something went wrong.