2022-04-23 03:41:04 +00:00
|
|
|
name: Lint
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
- develop
|
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
2022-12-07 18:18:15 +00:00
|
|
|
yarn_install:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-01-15 07:03:18 +00:00
|
|
|
- uses: actions/checkout@v3.3.0
|
2022-12-07 18:18:15 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
submodules: true
|
2023-01-15 06:58:10 +00:00
|
|
|
- uses: actions/setup-node@v3.6.0
|
2022-12-07 18:18:15 +00:00
|
|
|
with:
|
|
|
|
node-version: 18.x
|
|
|
|
cache: 'yarn'
|
|
|
|
- run: corepack enable
|
|
|
|
- run: yarn install --immutable
|
|
|
|
|
2022-11-24 06:39:00 +00:00
|
|
|
lint:
|
2022-12-07 18:18:15 +00:00
|
|
|
needs: [yarn_install]
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
continue-on-error: true
|
2022-11-24 06:39:00 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
workspace:
|
|
|
|
- backend
|
2022-12-27 05:36:33 +00:00
|
|
|
- frontend
|
2022-12-05 13:21:44 +00:00
|
|
|
- sw
|
2022-04-23 03:41:04 +00:00
|
|
|
steps:
|
2023-01-15 07:03:18 +00:00
|
|
|
- uses: actions/checkout@v3.3.0
|
2022-04-23 03:41:04 +00:00
|
|
|
with:
|
2022-11-24 06:39:00 +00:00
|
|
|
fetch-depth: 0
|
2022-04-23 03:41:04 +00:00
|
|
|
submodules: true
|
2023-01-15 06:58:10 +00:00
|
|
|
- uses: actions/setup-node@v3.6.0
|
2022-04-23 03:41:04 +00:00
|
|
|
with:
|
2022-04-29 01:17:03 +00:00
|
|
|
node-version: 18.x
|
2022-04-23 03:41:04 +00:00
|
|
|
cache: 'yarn'
|
2022-11-24 06:39:00 +00:00
|
|
|
- run: corepack enable
|
|
|
|
- run: yarn install --immutable
|
|
|
|
- run: yarn workspace ${{ matrix.workspace }} run lint
|