Skip to content

Merge branch 'ke/processor-not-a-git-dir' of https://github.com/kitsp… #1843

Merge branch 'ke/processor-not-a-git-dir' of https://github.com/kitsp…

Merge branch 'ke/processor-not-a-git-dir' of https://github.com/kitsp… #1843

name: Lint processor
on:
push:
paths:
- 'processor/**'
defaults:
run:
working-directory: processor
jobs:
lint_processor:
runs-on: ubuntu-20.04
steps:
- name: Setup Node 16
uses: actions/setup-node@v3
with:
node-version: '16'
- uses: actions/checkout@v3
- run: 'yarn install'
- run: 'yarn lint --max-warnings 0'
- run: 'yarn tsc'
- run: 'yarn prettier --check'