Skip to content

fix: ensure date-fns#parse is called with a string (#111) #89

fix: ensure date-fns#parse is called with a string (#111)

fix: ensure date-fns#parse is called with a string (#111) #89

Workflow file for this run

name: Ensure documentation is up-to-date
on:
push:
paths-ignore:
- 'docs/**'
- 'dist/**'
concurrency: ci-${{ github.ref }}
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 2
- run: git pull --rebase
- name: Install node_modules
run: yarn
- name: Generate docs
run: yarn generate-doc
- name: Commit changes
uses: EndBug/add-and-commit@v9
if: ${{ github.ref == 'refs/heads/master' }}
with:
author_name: high5-bot
author_email: [email protected]
message: 'docs: update documentation'
add: '.'
push: true