Skip to content

Fix incorrect doc descriptions and replace tautological test #100

Fix incorrect doc descriptions and replace tautological test

Fix incorrect doc descriptions and replace tautological test #100

Workflow file for this run

name: Documentation
on:
push:
branches: [ "main" ]
paths:
- 'docs/**'
- 'docs.json'
pull_request:
branches: [ "main" ]
paths:
- 'docs/**'
- 'docs.json'
jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
- name: Install docs.page CLI
run: npm install -g @docs.page/cli
- name: Validate documentation
run: npx @docs.page/cli check
notify:
needs: validate
if: success() && github.event_name == 'push' && github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
steps:
- name: Notify docs.page update
run: |
echo "Documentation has been updated and is now available at https://docs.page/btwld/ack"
# You could add additional notification steps here, such as:
# - Sending a Slack message
# - Creating a GitHub issue
# - Sending an email notification