Actions_tests/.forgejo/workflows/demo.yaml

20 lines
443 B
YAML
Raw Normal View History

2024-04-16 07:19:19 +00:00
on: [push]
jobs:
test:
2024-04-16 07:27:38 +00:00
runs-on: bookworm
2024-04-16 07:29:27 +00:00
container: minidocks/mkdocs
2024-04-16 07:19:19 +00:00
steps:
2024-04-16 08:15:44 +00:00
- name: Add NodeJs
run: |
2024-04-16 08:19:56 +00:00
uname -a
2024-04-16 08:22:56 +00:00
apk add nodejs npm
2024-04-16 07:59:40 +00:00
- name: Checkout repository
2024-04-16 08:23:54 +00:00
uses: actions/checkout@v4
2024-04-16 08:38:15 +00:00
with:
github-server-url: https://git.numenaute.org/
2024-04-16 07:59:40 +00:00
- name: Show content
run: |
pwd
ls -al
- name: Compile mkdocs
run: mkdocs build