Skip to content

chore: bump lucide-react from 0.291.0 to 0.321.0 #144

chore: bump lucide-react from 0.291.0 to 0.321.0

chore: bump lucide-react from 0.291.0 to 0.321.0 #144

Workflow file for this run

name: CI
on:
push:
branches: ['main']
pull_request:
branches: ['main']
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- name: Checkout
uses: actions/checkout@v4.1.1
- name: Install PNPM
uses: pnpm/action-setup@v2
with:
version: 8.9.2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4.0.0
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build project
run: pnpm build
- name: Run Tests
run: pnpm test:ci