diff options
| author | かっこかり <67428053+kakkokari-gtyih@users.noreply.github.com> | 2024-09-23 21:25:23 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-23 21:25:23 +0900 |
| commit | 7f7445ad7a4bfca020ca6c771383f206b19ff694 (patch) | |
| tree | 3fe75a23e679754e7177a2cc664bcb3d9af9e97a /.github | |
| parent | Bump version to 2024.9.0-alpha.6 (diff) | |
| download | sharkey-7f7445ad7a4bfca020ca6c771383f206b19ff694.tar.gz sharkey-7f7445ad7a4bfca020ca6c771383f206b19ff694.tar.bz2 sharkey-7f7445ad7a4bfca020ca6c771383f206b19ff694.zip | |
refactor(misskey-games): Misskey Games系パッケージのlint修正+Lint CI整備 (#14612)
* chore(lint): Fix linting in misskey-reversi
(cherry picked from commit 894934a1a7743472b2d051e2690007ae373efd76)
* chore(lint): Fix linting in misskey-bubble-game
(cherry picked from commit 1ba9c37a8d5e4ae6a98494026b87f6f6439790c7)
* enhance(gh): add lint ci for misskey games packages
* enhance(gh): fix lint ci
* fix
* revert some changes that nothing to do with lint rules
* fix
* lint fixes
* refactor: strict type def
* lint fixes
* :art:
* :art:
---------
Co-authored-by: 4censord <mail@4censord.de>
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/lint.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 3064b0f6f4..07d9af12f7 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -12,6 +12,8 @@ on: - packages/frontend-embed/** - packages/sw/** - packages/misskey-js/** + - packages/misskey-bubble-game/** + - packages/misskey-reversi/** - packages/shared/eslint.config.js - .github/workflows/lint.yml pull_request: @@ -22,6 +24,8 @@ on: - packages/frontend-embed/** - packages/sw/** - packages/misskey-js/** + - packages/misskey-bubble-game/** + - packages/misskey-reversi/** - packages/shared/eslint.config.js - .github/workflows/lint.yml jobs: @@ -53,6 +57,8 @@ jobs: - frontend-embed - sw - misskey-js + - misskey-bubble-game + - misskey-reversi env: eslint-cache-version: v1 eslint-cache-path: ${{ github.workspace }}/node_modules/.cache/eslint-${{ matrix.workspace }} |