Skip to content

Bump rimraf from 6.1.2 to 6.1.3 #2223

Bump rimraf from 6.1.2 to 6.1.3

Bump rimraf from 6.1.2 to 6.1.3 #2223

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build site
run: npm run build
env:
NODE_OPTIONS: '--max-old-space-size=8192'
- name: Verify build output
run: |
echo "Build completed successfully"
echo "Pages generated: $(find dist -name '*.html' | wc -l)"