Skip to content

chore(deps-dev): bump typescript from 4.3.5 to 4.4.2 (#527) #298

chore(deps-dev): bump typescript from 4.3.5 to 4.4.2 (#527)

chore(deps-dev): bump typescript from 4.3.5 to 4.4.2 (#527) #298

Workflow file for this run

name: Docs
on:
push:
branches:
- '*'
- '!docs'
paths:
- "src/**"
- "docs/**"
- "static/**"
- "scripts/docs.ts"
- "package.json"
- ".github/workflows/docs.yml"
workflow_dispatch:
jobs:
docs:
name: Documentation
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Node 14.x
uses: actions/setup-node@v3
with:
node-version: 14.x
- name: Install dependencies
run: npm install
- name: Build documentation
run: npm run docs
- name: Deploy documentation
uses: dbots-pkg/action-docs@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Update docs in repo
uses: EndBug/add-and-commit@v9
with:
add: docs/*.md
message: 'chore(docs): auto-update docs'