Skip to content

chore(deps-dev): bump js-yaml from 4.3.0 to 4.3.1 (#2248) #2512

chore(deps-dev): bump js-yaml from 4.3.0 to 4.3.1 (#2248)

chore(deps-dev): bump js-yaml from 4.3.0 to 4.3.1 (#2248) #2512

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)"