mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-22 18:07:31 -07:00
Make client/backend lints seperate workflows
This commit is contained in:
parent
abb1e025f5
commit
c306c2a4e6
1 changed files with 6 additions and 2 deletions
8
.github/workflows/lint.yml
vendored
8
.github/workflows/lint.yml
vendored
|
@ -9,6 +9,11 @@ on:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
lint:
|
lint:
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
workspace:
|
||||||
|
- backend-771cdf
|
||||||
|
- client-66101c
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
@ -23,5 +28,4 @@ jobs:
|
||||||
- run: yarn workspaces foreach install --immutable
|
- run: yarn workspaces foreach install --immutable
|
||||||
env:
|
env:
|
||||||
YARN_CHECKSUM_BEHAVIOR: update
|
YARN_CHECKSUM_BEHAVIOR: update
|
||||||
- run: yarn workspaces foreach run lint
|
- run: yarn workspace ${{ matrix.workspace }} run lint
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue