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