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