Skip to content

build(deps-dev): bump @rollup/plugin-typescript from 11.1.6 to 12.1.0 #23

build(deps-dev): bump @rollup/plugin-typescript from 11.1.6 to 12.1.0

build(deps-dev): bump @rollup/plugin-typescript from 11.1.6 to 12.1.0 #23

Workflow file for this run

name: Code Quality
on: [pull_request]
jobs:
quality:
name: Lint, Format & Organize
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install dependencies
run: npm ci
- name: Cache node modules
uses: actions/cache@v3
with:
path: node_modules
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Setup Biome.js
uses: biomejs/setup-biome@v2
with:
version: latest
- name: Run linting
run: npm run lint
- name: Run docs formating
run: npm run format