1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-02 14:26:28 +02:00
This commit is contained in:
rinsuki
2019-10-25 04:46:24 +09:00
parent 29cd17f521
commit 5859798d82

View File

@@ -14,6 +14,18 @@ jobs:
matrix:
node-version: [10.x, 12.x]
services:
postgres:
image: postgres:10-alpine
ports:
- 5432:5432
env:
POSTGRES_DB: test-misskey
redis:
image: redis:alpine
ports:
- 6379:6379
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
@@ -28,14 +40,3 @@ jobs:
run: yarn build
- name: Test
run: yarn test
services:
postgres:
image: postgres:10-alpine
ports:
- 5432:5432
env:
POSTGRES_DB: test-misskey
redis:
image: redis:alpine
ports:
- 6379:6379