cherrypick/.github/workflows/lint.yml

98 lines
2.2 KiB
YAML
Raw Normal View History

name: Lint
on:
push:
branches:
- master
- develop
paths:
- packages/backend/**
- packages/frontend/**
- packages/sw/**
2024-01-10 17:30:21 +09:00
- packages/cherrypick-js/**
- packages/shared/.eslintrc.js
pull_request:
paths:
- packages/backend/**
- packages/frontend/**
- packages/sw/**
2024-01-10 17:30:21 +09:00
- packages/cherrypick-js/**
- packages/shared/.eslintrc.js
jobs:
pnpm_install:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.1
with:
fetch-depth: 0
submodules: true
- uses: pnpm/action-setup@v3
with:
2023-04-27 00:17:40 +09:00
version: 8
run_install: false
- uses: actions/setup-node@v4.0.2
with:
2023-04-15 10:20:39 +09:00
node-version-file: '.node-version'
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-06-12 16:35:30 +09:00
- cherrypick-js
steps:
- uses: actions/checkout@v4.1.1
with:
fetch-depth: 0
submodules: true
- uses: pnpm/action-setup@v3
with:
version: 7
run_install: false
- uses: actions/setup-node@v4.0.2
with:
2023-04-15 10:20:39 +09:00
node-version-file: '.node-version'
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
typecheck:
needs: [pnpm_install]
runs-on: ubuntu-latest
continue-on-error: true
strategy:
matrix:
workspace:
- backend
2023-06-12 16:35:30 +09:00
- cherrypick-js
steps:
- uses: actions/checkout@v4.1.1
with:
fetch-depth: 0
submodules: true
- uses: pnpm/action-setup@v3
with:
version: 7
run_install: false
- uses: actions/setup-node@v4.0.2
with:
2023-04-15 10:20:39 +09:00
node-version-file: '.node-version'
cache: 'pnpm'
- run: corepack enable
- run: pnpm i --frozen-lockfile
2024-01-02 17:08:49 +09:00
- run: pnpm --filter cherrypick-js run build
if: ${{ matrix.workspace == 'backend' }}
- run: pnpm --filter misskey-reversi run build:tsc
2024-01-22 20:43:27 +09:00
if: ${{ matrix.workspace == 'backend' }}
2023-02-23 10:56:01 +09:00
- run: pnpm --filter ${{ matrix.workspace }} run typecheck