Skip to content

Configure eslint properly #1

Configure eslint properly

Configure eslint properly #1

Workflow file for this run

name: yarn
on: [push, pull_request]
jobs:
build:
name: yarn
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v3
with:
node-version: 14
- name: Build
run: |
yarn install
yarn build
- name: Lint
run: |
yarn lint