Skip to content

New draft of the cv project content #9

New draft of the cv project content

New draft of the cv project content #9

Workflow file for this run

name: Validate Routes
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
validate:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'yarn'
- name: Install dependencies
run: yarn install
- name: Validate routes
run: ./scripts/validate-routes.sh
- name: Verify build artifacts
run: |
echo "Generated HTML files:"
find dist -name "*.html" | sort
echo ""
echo "Sitemap content:"
cat dist/sitemap-0.xml