2021-10-27 16:16:13 +00:00
|
|
|
name: Test
|
|
|
|
|
2020-03-19 17:46:13 +00:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
- develop
|
|
|
|
pull_request:
|
2020-01-09 05:35:04 +00:00
|
|
|
|
|
|
|
jobs:
|
2022-09-17 18:27:08 +00:00
|
|
|
jest:
|
2020-01-09 05:35:04 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-04-29 01:17:03 +00:00
|
|
|
node-version: [18.x]
|
2020-03-19 17:46:13 +00:00
|
|
|
|
|
|
|
services:
|
|
|
|
postgres:
|
2022-01-21 07:43:56 +00:00
|
|
|
image: postgres:13
|
2020-03-19 17:46:13 +00:00
|
|
|
ports:
|
2021-10-16 08:12:20 +00:00
|
|
|
- 54312:5432
|
2020-03-19 17:46:13 +00:00
|
|
|
env:
|
|
|
|
POSTGRES_DB: test-misskey
|
|
|
|
POSTGRES_HOST_AUTH_METHOD: trust
|
2022-11-24 06:39:00 +00:00
|
|
|
YARN_CHECKSUM_BEHAVIOR: update
|
2020-03-19 17:46:13 +00:00
|
|
|
redis:
|
2022-01-21 07:43:56 +00:00
|
|
|
image: redis:6
|
2020-03-19 17:46:13 +00:00
|
|
|
ports:
|
2021-10-16 08:12:20 +00:00
|
|
|
- 56312:6379
|
2020-01-09 05:35:04 +00:00
|
|
|
|
|
|
|
steps:
|
2020-05-08 08:46:58 +00:00
|
|
|
- uses: actions/checkout@v2
|
2021-09-04 08:54:24 +00:00
|
|
|
with:
|
|
|
|
submodules: true
|
2020-01-09 05:35:04 +00:00
|
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
2022-11-24 06:39:00 +00:00
|
|
|
uses: actions/setup-node@v3.2.0
|
2020-01-09 05:35:04 +00:00
|
|
|
with:
|
|
|
|
node-version: ${{ matrix.node-version }}
|
2022-04-03 06:21:46 +00:00
|
|
|
cache: 'yarn'
|
2022-11-24 06:39:00 +00:00
|
|
|
- run: corepack enable
|
|
|
|
- run: yarn install --immutable
|
2021-08-16 07:33:45 +00:00
|
|
|
- name: Check yarn.lock
|
|
|
|
run: git diff --exit-code yarn.lock
|
2020-03-19 17:46:13 +00:00
|
|
|
- name: Copy Configure
|
2021-11-12 03:43:55 +00:00
|
|
|
run: cp .github/misskey/test.yml .config
|
2020-03-19 17:46:13 +00:00
|
|
|
- name: Build
|
|
|
|
run: yarn build
|
|
|
|
- name: Test
|
2022-09-17 18:27:08 +00:00
|
|
|
run: yarn jest-and-coverage
|
|
|
|
- name: Upload Coverage
|
|
|
|
uses: codecov/codecov-action@v3
|
|
|
|
with:
|
2022-09-19 19:56:19 +00:00
|
|
|
token: ${{ secrets.CODECOV_TOKEN }}
|
2022-09-17 18:27:08 +00:00
|
|
|
files: ./packages/backend/coverage/coverage-final.json
|
2020-03-19 17:46:13 +00:00
|
|
|
|
2021-10-27 16:16:13 +00:00
|
|
|
e2e:
|
2020-03-19 17:46:13 +00:00
|
|
|
runs-on: ubuntu-latest
|
2021-10-27 16:16:13 +00:00
|
|
|
|
|
|
|
strategy:
|
2022-01-21 07:43:56 +00:00
|
|
|
fail-fast: false
|
2021-10-27 16:16:13 +00:00
|
|
|
matrix:
|
2022-04-29 01:17:03 +00:00
|
|
|
node-version: [18.x]
|
2022-01-21 07:43:56 +00:00
|
|
|
browser: [chrome]
|
2021-10-27 16:16:13 +00:00
|
|
|
|
|
|
|
services:
|
|
|
|
postgres:
|
2022-01-21 07:43:56 +00:00
|
|
|
image: postgres:13
|
2021-10-27 16:16:13 +00:00
|
|
|
ports:
|
|
|
|
- 54312:5432
|
|
|
|
env:
|
|
|
|
POSTGRES_DB: test-misskey
|
|
|
|
POSTGRES_HOST_AUTH_METHOD: trust
|
|
|
|
redis:
|
2022-01-21 07:43:56 +00:00
|
|
|
image: redis:6
|
2021-10-27 16:16:13 +00:00
|
|
|
ports:
|
|
|
|
- 56312:6379
|
|
|
|
|
2020-03-19 17:46:13 +00:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2021-09-04 08:54:24 +00:00
|
|
|
with:
|
|
|
|
submodules: true
|
2022-01-21 07:43:56 +00: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 16:16:13 +00:00
|
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
2022-11-24 06:39:00 +00:00
|
|
|
uses: actions/setup-node@v3.2.0
|
2020-03-19 17:46:13 +00:00
|
|
|
with:
|
2021-10-27 16:16:13 +00:00
|
|
|
node-version: ${{ matrix.node-version }}
|
2022-04-03 06:21:46 +00:00
|
|
|
cache: 'yarn'
|
2022-11-24 06:39:00 +00:00
|
|
|
- run: corepack enable
|
|
|
|
- run: yarn install --immutable
|
|
|
|
env:
|
|
|
|
YARN_CHECKSUM_BEHAVIOR: update
|
2021-10-27 16:16:13 +00:00
|
|
|
- name: Copy Configure
|
2021-11-12 03:43:55 +00:00
|
|
|
run: cp .github/misskey/test.yml .config
|
2021-10-27 16:16:13 +00:00
|
|
|
- name: Build
|
|
|
|
run: yarn build
|
2022-01-21 07:43:56 +00: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
|
2022-06-11 07:00:39 +00:00
|
|
|
uses: cypress-io/github-action@v4
|
2022-01-21 07:43:56 +00:00
|
|
|
with:
|
|
|
|
install: false
|
2022-11-24 06:39:00 +00:00
|
|
|
start: yarn start:test
|
2022-01-21 07:43:56 +00:00
|
|
|
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
|