2021-10-27 18:16:13 +02:00
|
|
|
name: Test
|
|
|
|
|
2020-03-19 18:46:13 +01:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
- develop
|
|
|
|
pull_request:
|
2020-01-09 06:35:04 +01:00
|
|
|
|
|
|
|
jobs:
|
2021-10-27 18:16:13 +02:00
|
|
|
mocha:
|
2020-01-09 06:35:04 +01:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2021-10-27 18:16:13 +02:00
|
|
|
node-version: [16.x]
|
2020-03-19 18:46:13 +01:00
|
|
|
|
|
|
|
services:
|
|
|
|
postgres:
|
2021-10-16 10:12:20 +02:00
|
|
|
image: postgres:12.2-alpine
|
2020-03-19 18:46:13 +01:00
|
|
|
ports:
|
2021-10-16 10:12:20 +02:00
|
|
|
- 54312:5432
|
2020-03-19 18:46:13 +01:00
|
|
|
env:
|
|
|
|
POSTGRES_DB: test-misskey
|
|
|
|
POSTGRES_HOST_AUTH_METHOD: trust
|
|
|
|
redis:
|
2021-10-16 10:12:20 +02:00
|
|
|
image: redis:4.0-alpine
|
2020-03-19 18:46:13 +01:00
|
|
|
ports:
|
2021-10-16 10:12:20 +02:00
|
|
|
- 56312:6379
|
2020-01-09 06:35:04 +01:00
|
|
|
|
|
|
|
steps:
|
2020-05-08 10:46:58 +02:00
|
|
|
- uses: actions/checkout@v2
|
2021-09-04 10:54:24 +02:00
|
|
|
with:
|
|
|
|
submodules: true
|
2020-01-09 06:35:04 +01:00
|
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
|
|
uses: actions/setup-node@v1
|
|
|
|
with:
|
|
|
|
node-version: ${{ matrix.node-version }}
|
2020-03-19 18:46:13 +01:00
|
|
|
- name: Install dependencies
|
|
|
|
run: yarn install
|
2021-08-16 09:33:45 +02:00
|
|
|
- name: Check yarn.lock
|
|
|
|
run: git diff --exit-code yarn.lock
|
2020-03-19 18:46:13 +01:00
|
|
|
- name: Copy Configure
|
2021-11-12 04:43:55 +01:00
|
|
|
run: cp .github/misskey/test.yml .config
|
2020-03-19 18:46:13 +01:00
|
|
|
- name: Build
|
|
|
|
run: yarn build
|
|
|
|
- name: Test
|
2021-10-27 18:16:13 +02:00
|
|
|
run: yarn mocha
|
2020-03-19 18:46:13 +01:00
|
|
|
|
2021-10-27 18:16:13 +02:00
|
|
|
e2e:
|
2020-03-19 18:46:13 +01:00
|
|
|
runs-on: ubuntu-latest
|
2021-10-27 18:16:13 +02:00
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
node-version: [16.x]
|
|
|
|
|
|
|
|
services:
|
|
|
|
postgres:
|
|
|
|
image: postgres:12.2-alpine
|
|
|
|
ports:
|
|
|
|
- 54312:5432
|
|
|
|
env:
|
|
|
|
POSTGRES_DB: test-misskey
|
|
|
|
POSTGRES_HOST_AUTH_METHOD: trust
|
|
|
|
redis:
|
|
|
|
image: redis:4.0-alpine
|
|
|
|
ports:
|
|
|
|
- 56312:6379
|
|
|
|
|
2020-03-19 18:46:13 +01:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2021-09-04 10:54:24 +02:00
|
|
|
with:
|
|
|
|
submodules: true
|
2021-10-27 18:16:13 +02:00
|
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
|
|
uses: actions/setup-node@v1
|
2020-03-19 18:46:13 +01:00
|
|
|
with:
|
2021-10-27 18:16:13 +02:00
|
|
|
node-version: ${{ matrix.node-version }}
|
|
|
|
- name: Install dependencies
|
|
|
|
run: yarn install
|
|
|
|
- name: Check yarn.lock
|
|
|
|
run: git diff --exit-code yarn.lock
|
|
|
|
- name: Copy Configure
|
2021-11-12 04:43:55 +01:00
|
|
|
run: cp .github/misskey/test.yml .config
|
2021-10-27 18:16:13 +02:00
|
|
|
- name: Build
|
|
|
|
run: yarn build
|
|
|
|
- name: Test
|
|
|
|
run: yarn e2e
|