Skip to content

Separated GitHub actions #1

Separated GitHub actions

Separated GitHub actions #1

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