Skip to content

build(deps): bump lucide-react from 1.9.0 to 1.11.0 in /website (#4282) #668

build(deps): bump lucide-react from 1.9.0 to 1.11.0 in /website (#4282)

build(deps): bump lucide-react from 1.9.0 to 1.11.0 in /website (#4282) #668

Workflow file for this run

name: 'GitHub Pages'
on:
push:
branches:
- master
paths:
- 'website/**'
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Actions - Checkout
uses: actions/checkout@v6
- name: Actions - Setup NodeJS
uses: actions/setup-node@v6
with:
node-version: 22
package-manager-cache: false
- name: Cache Dependencies
uses: actions/cache@v5
with:
path: ~/.npm
key: npm-website-${{ hashFiles('website/package-lock.json') }}
restore-keys: npm-website-
- name: Installing Dependencies
run: cd website && npm ci
- name: Checking Types
run: cd website && npm run typecheck
- name: Run Unit Tests
run: cd website && npm run test:unit
- name: Building Site
run: cd website && npm run build
- name: Deploy
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./website/build