iceshrimp-legacy/.github/workflows/lint.yml
Kainoa Kanter 39f8cb3006
🙏
2022-05-29 19:03:59 -07:00

30 lines
534 B
YAML

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