Skip to content

Merge pull request #69 from kloV148/separate-eslint-build-workflow #2

Merge pull request #69 from kloV148/separate-eslint-build-workflow

Merge pull request #69 from kloV148/separate-eslint-build-workflow #2

Workflow file for this run

name: Run eslint check
on:
push:
branches:
- 'main'
pull_request:
types:
- opened
- synchronize
- edited
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: Run ESLint
run: yarn lint