2023-04-29 14:21:54 +00:00
|
|
|
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:
|
2024-07-30 00:17:06 +00:00
|
|
|
node-version: [20.16.0]
|
2023-04-29 14:21:54 +00:00
|
|
|
|
|
|
|
steps:
|
2023-10-19 10:35:13 +00:00
|
|
|
- uses: actions/checkout@v4.1.1
|
2023-04-29 14:21:54 +00:00
|
|
|
with:
|
|
|
|
submodules: true
|
|
|
|
- name: Install pnpm
|
2024-05-20 09:55:42 +00:00
|
|
|
uses: pnpm/action-setup@v4
|
2023-04-29 14:21:54 +00:00
|
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
2024-09-20 12:05:35 +00:00
|
|
|
uses: actions/setup-node@v4.0.4
|
2023-04-29 14:21:54 +00:00
|
|
|
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
|