Skip to content

eslint no fail

eslint no fail #694

name: eslint no fail
run-name: eslint no fail ${{ github.event.pull_request.branches[0].name }}
on: [push, pull_request]
jobs:
eslint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: enable pnpm
run: corepack enable
- name: Install modules in editor, controller-server
run: pnpm --dir editor install; pnpm --dir controller-server install
- name: Run ESLint for editor, controller-server
run: pnpm lint
continue-on-error: true