Skip to content

Bump lucide-react from 0.428.0 to 0.447.0 in /client #210

Bump lucide-react from 0.428.0 to 0.447.0 in /client

Bump lucide-react from 0.428.0 to 0.447.0 in /client #210

Workflow file for this run

name: 'Lint Client'
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./client
strategy:
matrix:
node-version: [20]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
cache-dependency-path: '**/package-lock.json'
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint