Skip to content

chore(deps): bump lucide-react from 0.546.0 to 0.548.0 in the minor-and-patch group #279

chore(deps): bump lucide-react from 0.546.0 to 0.548.0 in the minor-and-patch group

chore(deps): bump lucide-react from 0.546.0 to 0.548.0 in the minor-and-patch group #279

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build-lint-test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: "22"
- name: Setup Bun
uses: oven-sh/setup-bun@v2
- name: Cache dependencies
uses: actions/cache@v4
with:
path: ~/.bun/install/cache
key: ${{ runner.os }}-bc-${{ hashFiles('**/bun.lock') }}
restore-keys: |
${{ runner.os }}-bc-
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Build all packages
run: bun run build
- name: Run linting
run: bun run lint
- name: Run tests
run: bun run test