2023-12-09 01:45:37 +00:00
|
|
|
name: Lint
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2023-12-09 01:49:19 +00:00
|
|
|
- stable
|
2023-12-09 01:45:37 +00:00
|
|
|
- develop
|
|
|
|
paths:
|
|
|
|
- packages/**
|
|
|
|
pull_request:
|
2024-01-08 14:51:31 +00:00
|
|
|
paths:
|
|
|
|
- packages/backend/**
|
|
|
|
- packages/frontend/**
|
|
|
|
- packages/sw/**
|
|
|
|
- packages/misskey-js/**
|
|
|
|
- packages/shared/.eslintrc.js
|
2023-12-09 01:45:37 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
pnpm_install:
|
|
|
|
runs-on: docker
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4.1.1
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
submodules: true
|
|
|
|
- uses: https://github.com/pnpm/action-setup@v2
|
|
|
|
with:
|
|
|
|
version: 8
|
|
|
|
run_install: false
|
|
|
|
- uses: https://code.forgejo.org/actions/setup-node@v4
|
|
|
|
with:
|
|
|
|
node-version-file: '.node-version'
|
|
|
|
cache: 'pnpm'
|
|
|
|
- run: corepack enable
|
|
|
|
- run: pnpm i --frozen-lockfile
|
|
|
|
|
|
|
|
lint:
|
|
|
|
needs: [pnpm_install]
|
|
|
|
runs-on: docker
|
|
|
|
continue-on-error: true
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
workspace:
|
|
|
|
- backend
|
|
|
|
- frontend
|
|
|
|
- sw
|
|
|
|
- misskey-js
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4.1.1
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
submodules: true
|
|
|
|
- uses: https://github.com/pnpm/action-setup@v2
|
|
|
|
with:
|
|
|
|
version: 7
|
|
|
|
run_install: false
|
|
|
|
- uses: https://code.forgejo.org/actions/setup-node@v4
|
|
|
|
with:
|
|
|
|
node-version-file: '.node-version'
|
2023-12-09 01:46:01 +00:00
|
|
|
cache: 'pnpm'
|
2023-12-09 01:45:37 +00:00
|
|
|
- run: corepack enable
|
|
|
|
- run: pnpm i --frozen-lockfile
|
|
|
|
- run: pnpm --filter ${{ matrix.workspace }} run eslint
|
|
|
|
|
|
|
|
typecheck:
|
|
|
|
needs: [pnpm_install]
|
|
|
|
runs-on: docker
|
|
|
|
continue-on-error: true
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
workspace:
|
|
|
|
- backend
|
|
|
|
- misskey-js
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4.1.1
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
submodules: true
|
|
|
|
- uses: https://github.com/pnpm/action-setup@v2
|
|
|
|
with:
|
|
|
|
version: 7
|
|
|
|
run_install: false
|
|
|
|
- uses: https://code.forgejo.org/actions/setup-node@v4
|
|
|
|
with:
|
|
|
|
node-version-file: '.node-version'
|
2023-12-09 01:46:12 +00:00
|
|
|
cache: 'pnpm'
|
2023-12-09 01:45:37 +00:00
|
|
|
- run: corepack enable
|
|
|
|
- run: pnpm i --frozen-lockfile
|
2023-12-27 08:36:38 +00:00
|
|
|
- run: pnpm --filter misskey-js run build
|
|
|
|
if: ${{ matrix.workspace == 'backend' }}
|
2024-01-22 21:36:44 +00:00
|
|
|
- run: pnpm --filter misskey-reversi run build:tsc
|
2024-01-21 13:22:31 +00:00
|
|
|
if: ${{ matrix.workspace == 'backend' }}
|
2024-01-25 18:26:22 +00:00
|
|
|
- run: pnpm --filter misskey-bubble-game run build
|
2024-01-21 13:22:31 +00:00
|
|
|
if: ${{ matrix.workspace == 'backend' }}
|
2023-12-09 01:45:37 +00:00
|
|
|
- run: pnpm --filter ${{ matrix.workspace }} run typecheck
|