Skip to content

chore(deps): bump lucide-react from 1.21.0 to 1.24.0 #131

chore(deps): bump lucide-react from 1.21.0 to 1.24.0

chore(deps): bump lucide-react from 1.21.0 to 1.24.0 #131

Workflow file for this run

name: Next.js
on:
pull_request:
push:
branches:
- main
- next
permissions:
contents: read
env:
NEXT_TELEMETRY_DISABLED: 1
FORCE_COLOR: 1
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Set Up PNPM
uses: pnpm/action-setup@0ebf47130e4866e96fce0953f49152a61190b271 # v6.0.9
with:
version: latest
- name: Set Up Node.js
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: lts/*
cache: "pnpm"
- name: Cache build
id: cache
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
with:
path: |
${{ github.workspace }}/.next/cache
key: ${{ runner.os }}-nextjs-${{ hashFiles('**/pnpm-lock.yaml') }}-${{ hashFiles('**/*.js', '**/*.jsx', '**/*.ts', '**/*.tsx') }}
restore-keys: |
${{ runner.os }}-nextjs-${{ hashFiles('**/pnpm-lock.yaml') }}-
- name: Install dependencies
run: pnpm ci
- name: Build with Next.js
run: pnpm run build