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