Skip to content

Update blacklisted props that can be passed to native HTML elements using the transferProps principle #100

Update blacklisted props that can be passed to native HTML elements using the transferProps principle

Update blacklisted props that can be passed to native HTML elements using the transferProps principle #100

Workflow file for this run

name: Docs
on: [ pull_request ]
permissions:
contents: write
jobs:
build:
name: Build Docs
runs-on: ubuntu-20.04
steps:
- name: Clone repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.x
- name: Get cache ID
run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
- name: Restore cache
uses: actions/cache@v3
with:
key: mkdocs-material-${{ env.cache_id }}
path: .cache
restore-keys: |
mkdocs-material-
- name: Install MkDocs
run: pip install 'mkdocs-material>=9.0.0,<10.0.0'
- name: Build MkDocs
run: mkdocs build