2022-04-22 20:41:04 -07:00
|
|
|
name: Lint
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
- develop
|
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
backend:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
submodules: true
|
|
|
|
- uses: actions/setup-node@v3
|
|
|
|
with:
|
2022-04-28 18:17:03 -07:00
|
|
|
node-version: 18.x
|
2022-04-22 20:41:04 -07:00
|
|
|
cache: 'yarn'
|
|
|
|
cache-dependency-path: |
|
|
|
|
packages/backend/yarn.lock
|
|
|
|
- run: yarn install
|
|
|
|
- run: yarn --cwd ./packages/backend lint
|
|
|
|
|
|
|
|
client:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
submodules: true
|
|
|
|
- uses: actions/setup-node@v3
|
|
|
|
with:
|
2022-04-28 18:17:03 -07:00
|
|
|
node-version: 18.x
|
2022-04-22 20:41:04 -07:00
|
|
|
cache: 'yarn'
|
|
|
|
cache-dependency-path: |
|
|
|
|
packages/client/yarn.lock
|
|
|
|
- run: yarn install
|
|
|
|
- run: yarn --cwd ./packages/client lint
|