2020-05-10 19:33:09 -03:00
|
|
|
name: docs
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2023-09-15 00:56:48 +00:00
|
|
|
- "main"
|
2020-05-10 19:33:09 -03:00
|
|
|
paths:
|
2023-09-15 00:56:48 +00:00
|
|
|
- "www/**/*"
|
|
|
|
- ".github/workflows/docs.yml"
|
2021-10-30 09:27:05 -03:00
|
|
|
pull_request:
|
|
|
|
paths:
|
2023-09-15 00:56:48 +00:00
|
|
|
- "www/**/*"
|
|
|
|
- ".github/workflows/docs.yml"
|
2020-05-10 19:33:09 -03:00
|
|
|
|
2022-04-13 12:42:11 -05:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2020-05-10 19:33:09 -03:00
|
|
|
jobs:
|
|
|
|
htmltest:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-11-03 21:42:31 -03:00
|
|
|
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v3
|
2023-12-28 20:49:23 -03:00
|
|
|
- uses: cachix/install-nix-action@v24
|
2021-10-12 20:14:15 -03:00
|
|
|
with:
|
2023-12-28 20:49:23 -03:00
|
|
|
nix_path: nixpkgs=channel:nixos-unstable
|
|
|
|
github_access_token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- run: nix develop .#docs --command task docs:test
|