Skip to content

Add habits page

Add habits page #37

Workflow file for this run

# .github/workflows/lint.yml
name: Code health checks # name of the action (displayed in the github interface)
on: # event list
pull_request: # on a pull request to each of these branches
branches:
- main
env: # environment variables (available in any part of the action)
NODE_VERSION: 20
jobs: # list of things to do
linting:
name: Linting # job name (unique id)
runs-on: ubuntu-latest # on which machine to run
steps: # list of steps
- name: Install NodeJS
uses: actions/setup-node@v2
with:
node-version: ${{ env.NODE_VERSION }}
- name: Code Checkout
uses: actions/checkout@v2
- name: Install Dependencies
run: yarn install
- name: Type Checking
run: yarn typecheck
- name: Code Linting
run: yarn eslint:check
- name: Code Formatting
run: yarn prettier:check