eternal-flame-AD
5525e664ad
Some checks failed
Lint / pnpm_install (pull_request) Successful in 1m51s
Publish Docker image / Build (pull_request) Successful in 4m59s
Test (production install and build) / production (22.11.0) (pull_request) Successful in 1m11s
Test (backend) / unit (22.11.0) (pull_request) Successful in 8m8s
Lint / lint (backend) (pull_request) Successful in 2m34s
Lint / lint (frontend-embed) (pull_request) Successful in 2m19s
Test (backend) / e2e (22.11.0) (pull_request) Successful in 11m27s
Lint / lint (frontend-shared) (pull_request) Successful in 2m27s
Lint / lint (misskey-bubble-game) (pull_request) Successful in 2m6s
Lint / lint (misskey-js) (pull_request) Successful in 2m13s
Lint / lint (frontend) (pull_request) Failing after 9m38s
Lint / lint (misskey-reversi) (pull_request) Successful in 2m24s
Lint / lint (sw) (pull_request) Successful in 2m21s
Lint / typecheck (misskey-js) (pull_request) Successful in 1m31s
Lint / typecheck (backend) (pull_request) Successful in 2m21s
Lint / typecheck (sw) (pull_request) Successful in 1m37s
Signed-off-by: eternal-flame-AD <yume@yumechi.jp>
39 lines
838 B
YAML
39 lines
838 B
YAML
name: Test (production install and build)
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- develop
|
|
pull_request:
|
|
|
|
env:
|
|
NODE_ENV: production
|
|
|
|
jobs:
|
|
production:
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
matrix:
|
|
node-version: [22.11.0]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4.1.1
|
|
with:
|
|
submodules: true
|
|
- name: Install pnpm
|
|
uses: pnpm/action-setup@v4
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
uses: actions/setup-node@v4.0.4
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
cache: 'pnpm'
|
|
- run: corepack enable
|
|
- run: pnpm i --frozen-lockfile
|
|
- name: Check pnpm-lock.yaml
|
|
run: git diff --exit-code pnpm-lock.yaml
|
|
- name: Copy Configure
|
|
run: cp .github/misskey/test.yml .config/default.yml
|
|
- name: Build
|
|
run: pnpm build
|