2023-02-14 04:13:34 +00:00
|
|
|
name: Lint
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
- develop
|
2024-01-08 14:51:31 +00:00
|
|
|
paths:
|
|
|
|
- packages/backend/**
|
|
|
|
- packages/frontend/**
|
|
|
|
- packages/sw/**
|
|
|
|
- packages/misskey-js/**
|
2024-07-02 02:38:34 +00:00
|
|
|
- packages/shared/eslint.config.js
|
2024-07-14 08:27:27 +00:00
|
|
|
- .github/workflows/lint.yml
|
2023-02-14 04:13:34 +00:00
|
|
|
pull_request:
|
2024-01-08 14:51:31 +00:00
|
|
|
paths:
|
|
|
|
- packages/backend/**
|
|
|
|
- packages/frontend/**
|
|
|
|
- packages/sw/**
|
|
|
|
- packages/misskey-js/**
|
2024-07-02 02:38:34 +00:00
|
|
|
- packages/shared/eslint.config.js
|
2024-07-14 08:27:27 +00:00
|
|
|
- .github/workflows/lint.yml
|
2023-02-14 04:13:34 +00:00
|
|
|
jobs:
|
|
|
|
pnpm_install:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-10-19 10:35:13 +00:00
|
|
|
- uses: actions/checkout@v4.1.1
|
2023-02-14 04:13:34 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
submodules: true
|
2024-05-20 09:55:42 +00:00
|
|
|
- uses: pnpm/action-setup@v4
|
2024-07-14 12:29:57 +00:00
|
|
|
- uses: actions/setup-node@v4.0.3
|
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
|
2024-07-14 12:30:57 +00:00
|
|
|
env:
|
|
|
|
eslint-cache-version: v1
|
2023-02-14 04:13:34 +00:00
|
|
|
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-10-19 10:35:13 +00:00
|
|
|
- uses: actions/checkout@v4.1.1
|
2023-02-14 04:13:34 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
submodules: true
|
2024-05-20 09:55:42 +00:00
|
|
|
- uses: pnpm/action-setup@v4
|
2024-07-14 12:29:57 +00:00
|
|
|
- uses: actions/setup-node@v4.0.3
|
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
|
2024-07-14 12:30:57 +00:00
|
|
|
- name: Restore eslint cache
|
|
|
|
uses: actions/cache@v4.0.2
|
|
|
|
with:
|
|
|
|
path: node_modules/.cache/eslint
|
|
|
|
key: eslint-${{ env.eslint-cache-version }}-${{ hashFiles('/pnpm-lock.yaml') }}-${{ github.ref_name }}-${{ github.sha }}
|
|
|
|
restore-keys: |
|
|
|
|
eslint-${{ env.eslint-cache-version }}-${{ hashFiles('/pnpm-lock.yaml') }}-
|
|
|
|
- run: pnpm --filter ${{ matrix.workspace }} run eslint --cache --cache-location node_modules/.cache/eslint --cache-strategy content
|
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-10-19 10:35:13 +00:00
|
|
|
- uses: actions/checkout@v4.1.1
|
2023-02-22 23:23:55 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
submodules: true
|
2024-05-20 09:55:42 +00:00
|
|
|
- uses: pnpm/action-setup@v4
|
2024-07-14 12:29:57 +00:00
|
|
|
- uses: actions/setup-node@v4.0.3
|
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-12-27 08:36:38 +00:00
|
|
|
- run: pnpm --filter misskey-js run build
|
|
|
|
if: ${{ matrix.workspace == 'backend' }}
|
2024-03-30 06:28:19 +00:00
|
|
|
- run: pnpm --filter misskey-reversi run build
|
2024-01-22 09:01:54 +00:00
|
|
|
if: ${{ matrix.workspace == 'backend' }}
|
2023-02-23 01:56:01 +00:00
|
|
|
- run: pnpm --filter ${{ matrix.workspace }} run typecheck
|