Skip to content

Draft Part 1 Chapter 5 sections 01-03: New Bottlenecks foundation #41

Draft Part 1 Chapter 5 sections 01-03: New Bottlenecks foundation

Draft Part 1 Chapter 5 sections 01-03: New Bottlenecks foundation #41

Workflow file for this run

name: Validate
on:
push:
branches: [main]
workflow_dispatch:
jobs:
validate:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Install Chrome for Mermaid
run: |
sudo apt-get update
sudo apt-get install -y chromium-browser libgbm1
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Run all validations
run: npm run validate
env:
CHECK_EXTERNAL: false
CHECK_TRACEABILITY: false