2022-04-23 03:41:04 +00:00
|
|
|
name: Lint
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
- develop
|
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
2023-01-15 21:08:42 +00:00
|
|
|
pnpm_install:
|
2022-12-07 18:18:15 +00:00
|
|
|
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 21:08:42 +00:00
|
|
|
- uses: pnpm/action-setup@v2
|
|
|
|
with:
|
|
|
|
version: 7
|
|
|
|
run_install: false
|
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
|
2023-01-15 21:08:42 +00:00
|
|
|
cache: 'pnpm'
|
2022-12-07 18:18:15 +00:00
|
|
|
- run: corepack enable
|
2023-01-15 21:08:42 +00:00
|
|
|
- run: pnpm i --frozen-lockfile
|
2022-12-07 18:18:15 +00:00
|
|
|
|
2022-11-24 06:39:00 +00:00
|
|
|
lint:
|
2023-01-15 21:08:42 +00:00
|
|
|
needs: [pnpm_install]
|
2022-12-07 18:18:15 +00:00
|
|
|
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 21:08:42 +00:00
|
|
|
- uses: pnpm/action-setup@v2
|
|
|
|
with:
|
|
|
|
version: 7
|
|
|
|
run_install: false
|
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
|
2023-01-15 21:08:42 +00:00
|
|
|
cache: 'pnpm'
|
2022-11-24 06:39:00 +00:00
|
|
|
- run: corepack enable
|
2023-01-15 21:08:42 +00:00
|
|
|
- run: pnpm i --frozen-lockfile
|
|
|
|
- run: pnpm --filter ${{ matrix.workspace }} run lint
|