Add books I read on vacation #9
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |