2020-01-08 23:35:04 -06:00
|
|
|
name: Node.js CI
|
2020-03-19 12:46:13 -05:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
- develop
|
|
|
|
pull_request:
|
2020-01-08 23:35:04 -06:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build_and_test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2020-05-23 09:19:16 -05:00
|
|
|
node-version: [12.x, 14.x]
|
2020-03-19 12:46:13 -05:00
|
|
|
|
|
|
|
services:
|
|
|
|
postgres:
|
|
|
|
image: postgres:10-alpine
|
|
|
|
ports:
|
|
|
|
- 5432:5432
|
|
|
|
env:
|
|
|
|
POSTGRES_DB: test-misskey
|
|
|
|
POSTGRES_HOST_AUTH_METHOD: trust
|
|
|
|
redis:
|
|
|
|
image: redis:alpine
|
|
|
|
ports:
|
|
|
|
- 6379:6379
|
2020-01-08 23:35:04 -06:00
|
|
|
|
|
|
|
steps:
|
2020-05-08 03:46:58 -05:00
|
|
|
- uses: actions/checkout@v2
|
2020-01-08 23:35:04 -06:00
|
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
|
|
uses: actions/setup-node@v1
|
|
|
|
with:
|
|
|
|
node-version: ${{ matrix.node-version }}
|
2020-03-19 12:46:13 -05:00
|
|
|
- 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
|
|
|
|
|
|
|
|
lint:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions/setup-node@v1
|
|
|
|
with:
|
|
|
|
node-version: 12.x
|
2020-03-03 20:45:33 -06:00
|
|
|
- run: yarn install
|
2020-03-19 12:46:13 -05:00
|
|
|
- run: yarn lint
|