Skip to content

build(deps): bump eslint-plugin-unicorn from 64.0.0 to 72.0.0 #2032

build(deps): bump eslint-plugin-unicorn from 64.0.0 to 72.0.0

build(deps): bump eslint-plugin-unicorn from 64.0.0 to 72.0.0 #2032

Workflow file for this run

name: CI
permissions:
contents: read
on:
pull_request:
merge_group:
push:
branches:
- main
- beta
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v7
with:
fetch-depth: 0
- name: Install
uses: ./.github/composite-actions/install
- name: Run commitlint check
if: always()
run: npx commitlint -f ${{ github.event.pull_request.base.sha }}
- name: Run ESLint check
if: always()
run: npm run lint
- name: Run Prettier check
if: always()
run: npm run format
- name: Check types
if: always()
run: npm run typecheck
- name: Check dead code
if: always()
run: npm run knip