Skip to content

style: removing unused imports and organizing imports #1

style: removing unused imports and organizing imports

style: removing unused imports and organizing imports #1

Workflow file for this run

name: Build
on:
pull_request:
branches:
- "**"
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: 16.x
- name: Install dependencies
run: yarn install
- name: Lint
run: yarn run lint