iceshrimp-legacy/.github/workflows/lint.yml
ThatOneCalculator 71a907007c :goberserk:
2022-05-30 21:03:11 -07:00

27 lines
508 B
YAML

name: Lint
on:
push:
branches:
- master
- develop
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
submodules: true
- uses: actions/setup-node@v3.2.0
with:
node-version: 18.x
- run: corepack enable
- run: yarn set version berry
- run: yarn workspaces focus
- run: yarn install --immutable
- run: yarn workspaces foreach run lint