diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2021-11-12 12:43:55 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2021-11-12 12:43:55 +0900 |
| commit | 19cc9f7fb06ad73bc76cbb3c7430b48fcf8c68f0 (patch) | |
| tree | 89dc0f7998befc512bf6c1415ba736c37302d750 /.github | |
| parent | fix test (diff) | |
| download | sharkey-19cc9f7fb06ad73bc76cbb3c7430b48fcf8c68f0.tar.gz sharkey-19cc9f7fb06ad73bc76cbb3c7430b48fcf8c68f0.tar.bz2 sharkey-19cc9f7fb06ad73bc76cbb3c7430b48fcf8c68f0.zip | |
test
Diffstat (limited to '.github')
| -rw-r--r-- | .github/misskey/test.yml | 9 | ||||
| -rw-r--r-- | .github/workflows/test.yml | 4 |
2 files changed, 8 insertions, 5 deletions
diff --git a/.github/misskey/test.yml b/.github/misskey/test.yml index ae18a841bd..cd33f8a93b 100644 --- a/.github/misskey/test.yml +++ b/.github/misskey/test.yml @@ -1,12 +1,15 @@ url: 'http://misskey.local' -port: 8080 + +# ローカルでテストするときにポートを被らないようにするためデフォルトのものとは変える(以下同じ) +port: 61812 + db: host: localhost - port: 5432 + port: 54312 db: test-misskey user: postgres pass: '' redis: host: localhost - port: 6379 + port: 56312 id: aid diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 045d209802..e220d714d0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -41,7 +41,7 @@ jobs: - name: Check yarn.lock run: git diff --exit-code yarn.lock - name: Copy Configure - run: cp test/test.yml .config + run: cp .github/misskey/test.yml .config - name: Build run: yarn build - name: Test @@ -80,7 +80,7 @@ jobs: - name: Check yarn.lock run: git diff --exit-code yarn.lock - name: Copy Configure - run: cp test/test.yml .config + run: cp .github/misskey/test.yml .config - name: Build run: yarn build - name: Test |