Skip to content

add missing dep to lint plugin #4112

add missing dep to lint plugin

add missing dep to lint plugin #4112

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
- lts
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 22.x]
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
- name: Install Dependencies
run: pnpm install --frozen-lockfile
- name: Build
run: pnpm run build
- name: Run Tests & Lint
run: pnpm test