diff options
| author | zyoshoka <107108195+zyoshoka@users.noreply.github.com> | 2024-08-30 15:53:04 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-30 15:53:04 +0900 |
| commit | 8be624aa4441dbbc3f911453d22b70dee8a685b5 (patch) | |
| tree | e462548621295abd588559d01ddf434e45c2c191 /.github | |
| parent | fix(frontend): server metrics look strange after reload (#14467) (diff) | |
| download | sharkey-8be624aa4441dbbc3f911453d22b70dee8a685b5.tar.gz sharkey-8be624aa4441dbbc3f911453d22b70dee8a685b5.tar.bz2 sharkey-8be624aa4441dbbc3f911453d22b70dee8a685b5.zip | |
refactor(sw): fix type errors (#14478)
* style(sw): lint fixes
* refactor(sw): fix type errors
* chore(sw): disable `noImplicitAny`
* ci(sw): enable typecheck ci
* ci(sw): build `misskey-js` before typecheck
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/lint.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index c21fc95123..1f13f4fa2f 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -78,6 +78,7 @@ jobs: matrix: workspace: - backend + - sw - misskey-js steps: - uses: actions/checkout@v4.1.1 @@ -92,7 +93,7 @@ jobs: - run: corepack enable - run: pnpm i --frozen-lockfile - run: pnpm --filter misskey-js run build - if: ${{ matrix.workspace == 'backend' }} + if: ${{ matrix.workspace == 'backend' || matrix.workspace == 'sw' }} - run: pnpm --filter misskey-reversi run build if: ${{ matrix.workspace == 'backend' }} - run: pnpm --filter ${{ matrix.workspace }} run typecheck |