diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2021-10-16 17:42:21 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2021-10-16 17:42:21 +0900 |
| commit | 23753ec75a1820b098defb70ba16d5d1ce22e03f (patch) | |
| tree | 499842deff9c8de1bc88921f753e36fab36aad37 /.github/workflows | |
| parent | feat(api): add users/groups/leave (diff) | |
| parent | Refactor request (#7814) (diff) | |
| download | misskey-23753ec75a1820b098defb70ba16d5d1ce22e03f.tar.gz misskey-23753ec75a1820b098defb70ba16d5d1ce22e03f.tar.bz2 misskey-23753ec75a1820b098defb70ba16d5d1ce22e03f.zip | |
Merge branch 'develop' of https://github.com/misskey-dev/misskey into develop
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/nodejs.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 9a32dac94e..a91572ad78 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -16,16 +16,16 @@ jobs: services: postgres: - image: postgres:10-alpine + image: postgres:12.2-alpine ports: - - 5432:5432 + - 54312:5432 env: POSTGRES_DB: test-misskey POSTGRES_HOST_AUTH_METHOD: trust redis: - image: redis:alpine + image: redis:4.0-alpine ports: - - 6379:6379 + - 56312:6379 steps: - uses: actions/checkout@v2 @@ -40,7 +40,7 @@ jobs: - name: Check yarn.lock run: git diff --exit-code yarn.lock - name: Copy Configure - run: cp .circleci/misskey/*.yml .config + run: cp test/test.yml .config - name: Build run: yarn build - name: Test |