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

25 lines
427 B
YAML
Raw Normal View History

name: Lint
on:
push:
branches:
- master
- develop
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
2022-05-29 21:09:44 -06:00
fetch-depth: 0
2022-05-29 20:06:52 -06:00
submodules: true
2022-05-29 21:09:44 -06:00
- uses: actions/setup-node@v3.2.0
with:
node-version: 18.x
2022-05-29 19:11:20 -06:00
- run: corepack enable
2022-05-30 21:53:23 -06:00
- run: yarn install
2022-05-30 18:31:24 -06:00
- run: yarn workspaces foreach run lint
2022-05-29 20:06:52 -06:00