21 lines
380 B
YAML
21 lines
380 B
YAML
on: [push]
|
|
jobs:
|
|
test:
|
|
runs-on: docker
|
|
|
|
container:
|
|
image: peaceiris/mdbook
|
|
|
|
steps:
|
|
- name: Install dependencies
|
|
run: apk add --no-cache git nodejs util-linux
|
|
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Build mdBook
|
|
run: mdbook build
|
|
working-directory: docs
|
|
|
|
- name: Done
|
|
run: echo done!
|