1528935008
* CI test * Add pg healthcheck * postgres:10.8 * 試しにhealthcheckなしに * postgres:10 * Revert "試しにhealthcheckなしに" This reverts commit 4a7ba19ea9b93d54966f256f8f04090482b9005d. * は? * postgres:10.8-alpine * postgres:10.11-alpine * テスト用ブランチ指定を削除
43 lines
839 B
YAML
43 lines
839 B
YAML
name: Node.js CI
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- develop
|
|
pull_request:
|
|
|
|
jobs:
|
|
build_and_test:
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
matrix:
|
|
node-version: [11.10.x, 12.x]
|
|
|
|
services:
|
|
postgres:
|
|
image: postgres:10.11-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 }}
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
- name: Install dependencies
|
|
run: yarn install
|
|
- name: Copy Configure
|
|
run: cp .circleci/misskey/*.yml .config
|
|
- name: Build
|
|
run: yarn build
|
|
- name: Test
|
|
run: yarn test
|