forked from FoundKeyGang/FoundKey
Francis Dinh
6bba55c196
This implements the upstream changes from https://github.com/misskey-dev/misskey/pull/9314 but updated to our version of ESLint. Also updates TypeScript to 4.9.4 for all packages.
22 lines
386 B
YAML
22 lines
386 B
YAML
clone:
|
|
git:
|
|
image: woodpeckerci/plugin-git
|
|
settings:
|
|
depth: 1 # CI does not need commit history
|
|
recursive: true
|
|
|
|
pipeline:
|
|
install:
|
|
when:
|
|
event:
|
|
- pull_request
|
|
image: node:18.6.0
|
|
commands:
|
|
- yarn install
|
|
lint:
|
|
when:
|
|
event:
|
|
- pull_request
|
|
image: node:18.6.0
|
|
commands:
|
|
- yarn workspace sw run lint
|