Skip to content

Merge Develop into main #55

Merge Develop into main

Merge Develop into main #55

Workflow file for this run

name: Lint
on: pull_request
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20.18.0
- name: Install dependencies
run: yarn
- name: Validate the most recent commit with commitlint
run: npx commitlint --from=HEAD --verbose
- name: Typecheck
run: yarn typecheck
- name: Lint
run: yarn lint
- name: Format check
run: yarn format-check