diff options
| author | rinsuki <428rinsuki+git@gmail.com> | 2020-02-27 10:08:31 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-02-27 10:08:31 +0900 |
| commit | d425c72134816784bdbe0baa8775c64d625eb2b7 (patch) | |
| tree | 2fac0f8cb96f163e21b9633d0852472457e0c4f1 /.github/workflows/nodejs.yml | |
| parent | Resolve #6091 (diff) | |
| download | sharkey-d425c72134816784bdbe0baa8775c64d625eb2b7.tar.gz sharkey-d425c72134816784bdbe0baa8775c64d625eb2b7.tar.bz2 sharkey-d425c72134816784bdbe0baa8775c64d625eb2b7.zip | |
GitHub Actions のテストで postgres がコケてるのを修正 (#6089)
* github actionsのfail原因調査用
* fix
* fix
* fux
* remove tihs branch from CI target
* ログ表示削除
* fix
Diffstat (limited to '.github/workflows/nodejs.yml')
| -rw-r--r-- | .github/workflows/nodejs.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index f41e41567f..d8c29abc37 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -16,11 +16,12 @@ jobs: services: postgres: - image: postgres:10.11-alpine + image: postgres:10-alpine ports: - 5432:5432 env: POSTGRES_DB: test-misskey + POSTGRES_HOST_AUTH_METHOD: trust redis: image: redis:alpine ports: |