Skip to content

jsdoc: Document ListItem.identicalTo() #1007

jsdoc: Document ListItem.identicalTo()

jsdoc: Document ListItem.identicalTo() #1007

Workflow file for this run

name: Verify Commit
on:
push:
branches: ['*']
pull_request:
branches: [main]
jobs:
validate:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
- name: Install modules
run: yarn
- name: Run build
run: yarn run build
- name: Run TypeScript compiler ESLint
run: yarn run lint
- name: Run Markdown Lint
run: yarn run lint:markdown
- name: Run Jest
run: yarn run test
- name: Archive verified build
uses: actions/upload-artifact@v4
with:
name: dist-verified
path: |
main.js
manifest.json
styles.css
- name: Copy new build to Tasks-Demo vault
run: ./scripts/Test-TasksInLocalObsidian.sh
- name: Archive Tasks-Demo vault
uses: actions/upload-artifact@v4
with:
name: Tasks-Demo-VerifyCommit-Build${{ github.run_number }}-Run${{ github.run_attempt }}
include-hidden-files: true
path: |
resources/sample_vaults/Tasks-Demo
- name: Install graphviz
run: sudo apt-get install -y graphviz
- name: Identify circular dependencies
run: |
yarn run circular-deps-text || echo continuing after error message
yarn run circular-deps-image
- name: Archive circular dependencies results
uses: actions/upload-artifact@v4
with:
name: circular-dependencies
path: |
circular-deps.png
circular-deps.txt