Skip to content

Added initial documentation for models (#447) #10

Added initial documentation for models (#447)

Added initial documentation for models (#447) #10

Workflow file for this run

name: Code Format Check
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
lint:
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: read
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up node.js
uses: actions/setup-node@v4
with:
node-version: '16'
- name: Run lint check
run: |
(cd ui && yarn install && yarn test:format)