Skip to content

chore: remove unused deps and lint with biome #16

chore: remove unused deps and lint with biome

chore: remove unused deps and lint with biome #16

Workflow file for this run

name: Code checker
on:
pull_request:
branches:
- main
workflow_call:
inputs:
GH_TOKEN:
required: true
type: string
env:
GH_TOKEN: ${{ inputs.GH_TOKEN }}
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
code-quality:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: latest
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: Run lint
run: pnpm lint
- name: Run Biome
run: pnpm format