Skip to content

test publish workflow #99

test publish workflow

test publish workflow #99

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