2022-04-23 03:41:04 +00:00
|
|
|
name: Lint
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
- develop
|
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
2022-05-30 01:28:01 +00:00
|
|
|
workspaces:
|
2022-04-23 03:41:04 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
submodules: true
|
|
|
|
- uses: actions/setup-node@v3
|
|
|
|
with:
|
2022-04-29 01:17:03 +00:00
|
|
|
node-version: 18.x
|
2022-04-23 03:41:04 +00:00
|
|
|
cache: 'yarn'
|
2022-05-30 01:11:20 +00:00
|
|
|
- run: corepack enable
|
2022-04-23 03:41:04 +00:00
|
|
|
- run: yarn install
|
2022-05-30 01:28:01 +00:00
|
|
|
- run: yarn workspaces * lint
|