Skip to content

Update tutorial.mdx #153

Update tutorial.mdx

Update tutorial.mdx #153

Workflow file for this run

name: Lint
on:
pull_request:
branches:
- main
- master
push:
branches:
- main
- master
jobs:
lint:
name: Run ESLint and Prettier
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Run Prettier Check
run: npm run format:check
- name: Run ESLint
run: npm run lint