Skip to content

build: bump react to v19.2.1 #882

build: bump react to v19.2.1

build: bump react to v19.2.1 #882

Workflow file for this run

# Workflow for testing the blog
name: Run Tests
on:
push:
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
# Default to bash
defaults:
run:
shell: bash
jobs:
# Build job
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Set up node
uses: actions/setup-node@v6
with:
node-version: "22.18.0"
cache: npm
- name: Install dependencies
run: npm clean-install
- name: Run format-check
run: npm run format:check
- name: Build site
run: npm run build