iceshrimp-legacy/.github/workflows/lint.yml
ThatOneCalculator a2f9e1cec2 :finnadie:
2022-05-30 20:53:23 -07:00

25 lines
427 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 install
- run: yarn workspaces foreach run lint