Skip to content

Merge pull request #22 from editor-js/fix-workflow #97

Merge pull request #22 from editor-js/fix-workflow

Merge pull request #22 from editor-js/fix-workflow #97

Workflow file for this run

name: ESLint
on:
push:
branches:
- 'main'
pull_request:
types: [opened, synchronize, reopened]
jobs:
eslint:
name: Run eslint check
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install dependencies
run: yarn install
- name: Build packages
run: yarn build
- name: Run ESLint
run: yarn lint