2023-02-14 13:13:34 +09:00
|
|
|
name: Lint
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
- develop
|
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
pnpm_install:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3.3.0
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
submodules: true
|
|
|
|
- uses: pnpm/action-setup@v2
|
|
|
|
with:
|
2023-04-27 00:17:40 +09:00
|
|
|
version: 8
|
2023-02-14 13:13:34 +09:00
|
|
|
run_install: false
|
|
|
|
- uses: actions/setup-node@v3.6.0
|
|
|
|
with:
|
2023-04-15 10:20:39 +09:00
|
|
|
node-version-file: '.node-version'
|
2023-02-14 13:13:34 +09:00
|
|
|
cache: 'pnpm'
|
|
|
|
- run: corepack enable
|
|
|
|
- run: pnpm i --frozen-lockfile
|
|
|
|
|
|
|
|
lint:
|
|
|
|
needs: [pnpm_install]
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
continue-on-error: true
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
workspace:
|
|
|
|
- backend
|
|
|
|
- frontend
|
|
|
|
- sw
|
2023-03-30 09:33:19 +09:00
|
|
|
- misskey-js
|
2023-02-14 13:13:34 +09:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3.3.0
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
submodules: true
|
|
|
|
- uses: pnpm/action-setup@v2
|
|
|
|
with:
|
|
|
|
version: 7
|
|
|
|
run_install: false
|
|
|
|
- uses: actions/setup-node@v3.6.0
|
|
|
|
with:
|
2023-04-15 10:20:39 +09:00
|
|
|
node-version-file: '.node-version'
|
2023-02-14 13:13:34 +09:00
|
|
|
cache: 'pnpm'
|
|
|
|
- run: corepack enable
|
|
|
|
- run: pnpm i --frozen-lockfile
|
2023-02-23 10:56:01 +09:00
|
|
|
- run: pnpm --filter ${{ matrix.workspace }} run eslint
|
2023-02-23 08:23:55 +09:00
|
|
|
|
|
|
|
typecheck:
|
|
|
|
needs: [pnpm_install]
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
continue-on-error: true
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
workspace:
|
|
|
|
- backend
|
2023-03-30 09:33:19 +09:00
|
|
|
- misskey-js
|
2023-02-23 08:23:55 +09:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3.3.0
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
submodules: true
|
|
|
|
- uses: pnpm/action-setup@v2
|
|
|
|
with:
|
|
|
|
version: 7
|
|
|
|
run_install: false
|
|
|
|
- uses: actions/setup-node@v3.6.0
|
|
|
|
with:
|
2023-04-15 10:20:39 +09:00
|
|
|
node-version-file: '.node-version'
|
2023-02-23 08:23:55 +09:00
|
|
|
cache: 'pnpm'
|
|
|
|
- run: corepack enable
|
|
|
|
- run: pnpm i --frozen-lockfile
|
2023-02-23 10:56:01 +09:00
|
|
|
- run: pnpm --filter ${{ matrix.workspace }} run typecheck
|