2021-10-27 09:16:13 -07:00
|
|
|
name: Test
|
|
|
|
|
2020-03-19 10:46:13 -07:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
- develop
|
|
|
|
pull_request:
|
2020-01-08 21:35:04 -08:00
|
|
|
|
|
|
|
jobs:
|
2021-10-27 09:16:13 -07:00
|
|
|
mocha:
|
2020-01-08 21:35:04 -08:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2021-10-27 09:16:13 -07:00
|
|
|
node-version: [16.x]
|
2020-03-19 10:46:13 -07:00
|
|
|
|
|
|
|
services:
|
|
|
|
postgres:
|
2022-01-20 23:43:56 -08:00
|
|
|
image: postgres:13
|
2020-03-19 10:46:13 -07:00
|
|
|
ports:
|
2021-10-16 01:12:20 -07:00
|
|
|
- 54312:5432
|
2020-03-19 10:46:13 -07:00
|
|
|
env:
|
|
|
|
POSTGRES_DB: test-misskey
|
|
|
|
POSTGRES_HOST_AUTH_METHOD: trust
|
|
|
|
redis:
|
2022-01-20 23:43:56 -08:00
|
|
|
image: redis:6
|
2020-03-19 10:46:13 -07:00
|
|
|
ports:
|
2021-10-16 01:12:20 -07:00
|
|
|
- 56312:6379
|
2020-01-08 21:35:04 -08:00
|
|
|
|
|
|
|
steps:
|
2020-05-08 01:46:58 -07:00
|
|
|
- uses: actions/checkout@v2
|
2021-09-04 01:54:24 -07:00
|
|
|
with:
|
|
|
|
submodules: true
|
2020-01-08 21:35:04 -08:00
|
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
2022-04-02 23:21:46 -07:00
|
|
|
uses: actions/setup-node@v3
|
2020-01-08 21:35:04 -08:00
|
|
|
with:
|
|
|
|
node-version: ${{ matrix.node-version }}
|
2022-04-02 23:21:46 -07:00
|
|
|
cache: 'yarn'
|
|
|
|
cache-dependency-path: |
|
2022-04-02 23:24:29 -07:00
|
|
|
packages/backend/yarn.lock
|
|
|
|
packages/client/yarn.lock
|
2020-03-19 10:46:13 -07:00
|
|
|
- name: Install dependencies
|
|
|
|
run: yarn install
|
2021-08-16 00:33:45 -07:00
|
|
|
- name: Check yarn.lock
|
|
|
|
run: git diff --exit-code yarn.lock
|
2020-03-19 10:46:13 -07:00
|
|
|
- name: Copy Configure
|
2021-11-11 19:43:55 -08:00
|
|
|
run: cp .github/misskey/test.yml .config
|
2020-03-19 10:46:13 -07:00
|
|
|
- name: Build
|
|
|
|
run: yarn build
|
|
|
|
- name: Test
|
2021-10-27 09:16:13 -07:00
|
|
|
run: yarn mocha
|
2020-03-19 10:46:13 -07:00
|
|
|
|
2021-10-27 09:16:13 -07:00
|
|
|
e2e:
|
2020-03-19 10:46:13 -07:00
|
|
|
runs-on: ubuntu-latest
|
2021-10-27 09:16:13 -07:00
|
|
|
|
|
|
|
strategy:
|
2022-01-20 23:43:56 -08:00
|
|
|
fail-fast: false
|
2021-10-27 09:16:13 -07:00
|
|
|
matrix:
|
|
|
|
node-version: [16.x]
|
2022-01-20 23:43:56 -08:00
|
|
|
browser: [chrome]
|
2021-10-27 09:16:13 -07:00
|
|
|
|
|
|
|
services:
|
|
|
|
postgres:
|
2022-01-20 23:43:56 -08:00
|
|
|
image: postgres:13
|
2021-10-27 09:16:13 -07:00
|
|
|
ports:
|
|
|
|
- 54312:5432
|
|
|
|
env:
|
|
|
|
POSTGRES_DB: test-misskey
|
|
|
|
POSTGRES_HOST_AUTH_METHOD: trust
|
|
|
|
redis:
|
2022-01-20 23:43:56 -08:00
|
|
|
image: redis:6
|
2021-10-27 09:16:13 -07:00
|
|
|
ports:
|
|
|
|
- 56312:6379
|
|
|
|
|
2020-03-19 10:46:13 -07:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2021-09-04 01:54:24 -07:00
|
|
|
with:
|
|
|
|
submodules: true
|
2022-01-20 23:43:56 -08:00
|
|
|
# https://github.com/cypress-io/cypress-docker-images/issues/150
|
|
|
|
#- name: Install mplayer for FireFox
|
|
|
|
# run: sudo apt install mplayer -y
|
|
|
|
# if: ${{ matrix.browser == 'firefox' }}
|
|
|
|
#- uses: browser-actions/setup-firefox@latest
|
|
|
|
# if: ${{ matrix.browser == 'firefox' }}
|
2021-10-27 09:16:13 -07:00
|
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
2022-04-02 23:21:46 -07:00
|
|
|
uses: actions/setup-node@v3
|
2020-03-19 10:46:13 -07:00
|
|
|
with:
|
2021-10-27 09:16:13 -07:00
|
|
|
node-version: ${{ matrix.node-version }}
|
2022-04-02 23:21:46 -07:00
|
|
|
cache: 'yarn'
|
|
|
|
cache-dependency-path: |
|
2022-04-02 23:24:29 -07:00
|
|
|
packages/backend/yarn.lock
|
|
|
|
packages/client/yarn.lock
|
2021-10-27 09:16:13 -07:00
|
|
|
- name: Install dependencies
|
|
|
|
run: yarn install
|
|
|
|
- name: Check yarn.lock
|
|
|
|
run: git diff --exit-code yarn.lock
|
|
|
|
- name: Copy Configure
|
2021-11-11 19:43:55 -08:00
|
|
|
run: cp .github/misskey/test.yml .config
|
2021-10-27 09:16:13 -07:00
|
|
|
- name: Build
|
|
|
|
run: yarn build
|
2022-01-20 23:43:56 -08:00
|
|
|
# https://github.com/cypress-io/cypress/issues/4351#issuecomment-559489091
|
|
|
|
- name: ALSA Env
|
|
|
|
run: echo -e 'pcm.!default {\n type hw\n card 0\n}\n\nctl.!default {\n type hw\n card 0\n}' > ~/.asoundrc
|
|
|
|
- name: Cypress run
|
|
|
|
uses: cypress-io/github-action@v2
|
|
|
|
with:
|
|
|
|
install: false
|
|
|
|
start: npm run start:test
|
|
|
|
wait-on: 'http://localhost:61812'
|
|
|
|
headless: false
|
|
|
|
browser: ${{ matrix.browser }}
|
|
|
|
- uses: actions/upload-artifact@v2
|
|
|
|
if: failure()
|
|
|
|
with:
|
|
|
|
name: ${{ matrix.browser }}-cypress-screenshots
|
|
|
|
path: cypress/screenshots
|
|
|
|
- uses: actions/upload-artifact@v2
|
|
|
|
if: always()
|
|
|
|
with:
|
|
|
|
name: ${{ matrix.browser }}-cypress-videos
|
|
|
|
path: cypress/videos
|