Skip to content

chore: update edge documentation #302

chore: update edge documentation

chore: update edge documentation #302

Workflow file for this run

name: Lint
on:
pull_request:
branches:
- main
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '18.x'
- name: Install dependencies
env:
HUSKY: 0
run: yarn install --frozen-lockfile
- name: Lint
run: yarn lint
- name: Check formatting
run: yarn format:check