jormungandr-bite/.github/workflows/lint.yml

30 lines
534 B
YAML
Raw Normal View History

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