Skip to content
This repository has been archived by the owner on Oct 11, 2024. It is now read-only.

build(deps-dev): bump eslint-plugin-unused-imports from 3.1.0 to 4.1.3 #166

build(deps-dev): bump eslint-plugin-unused-imports from 3.1.0 to 4.1.3

build(deps-dev): bump eslint-plugin-unused-imports from 3.1.0 to 4.1.3 #166

Workflow file for this run

name: style
on:
push:
branches: main
pull_request:
branches: main
jobs:
prettier:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [20]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Run prettier
run: |
yarn install --dev --exact --frozen-lockfile
yarn prettier --version
yarn format:check
eslint:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [20]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Run eslint
run: |
yarn install --dev --exact --frozen-lockfile
yarn eslint --version
yarn lint:check