Skip to content

Add books I read on vacation #9

Add books I read on vacation

Add books I read on vacation #9

Workflow file for this run

name: Test building blog
on:
pull_request:
# Allow this job to clone the repo and create a page deployment
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
env:
TZ: America/Chicago
steps:
- name: Checkout your repository using git
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Start Kroki
run: |
cd src/kroki && docker-compose up -d && sleep 10
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 18
- name: List dependencies
run: npm ls --all || true
- name: Install dependencies
run: npm install
- name: Build site
run: npm run astro build