Skip to content

feat: link to plugin page #55

feat: link to plugin page

feat: link to plugin page #55

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Setup Node.js
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: 20
cache: yarn
cache-dependency-path: yarn.lock
- name: Enable Corepack
run: corepack enable
- name: Setup Biome CLI
uses: biomejs/setup-biome@4c91541eaada48f67d7dbd7833600ce162b68f51 # v2.7.1
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Lint code
run: biome ci --diagnostic-level=error --reporter=github