Skip to content

build(cdn): rm unused config dependency #2609

build(cdn): rm unused config dependency

build(cdn): rm unused config dependency #2609

Workflow file for this run

# A GitHub Actions workflow that generates the documentation for pull requests
name: Documentation
on:
push:
branches-ignore:
- main
jobs:
docs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Prepare
uses: ./.github/actions/prepare
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Generate docs
run: npm run docs
- name: Commit docs
uses: EndBug/add-and-commit@v9
# We don't want to commit documentation changes to main
if: ${{ github.ref != 'refs/heads/main' }}
with:
add: .
default_author: github_actions
message: '🤖 Documentation auto-update'