iceshrimp-legacy/.github/workflows/lint.yml
Kainoa Kanter 6f2a9d567d
Update lint.yml
🤔
2022-05-29 19:06:52 -07:00

29 lines
510 B
YAML

name: Lint
on:
push:
branches:
- master
- develop
pull_request:
jobs:
lint:
strategy:
matrix:
workspace:
- backend
- client
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: true
- uses: actions/setup-node@v3
with:
node-version: 18.x
- run: corepack enable
- run: yarn install --immutable
- run: yarn workspaces ${{ matrix.workspace }} lint