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