Skip to content

build: add VS Code support #3

build: add VS Code support

build: add VS Code support #3

Workflow file for this run

name: Format Check
on:
pull_request:
branches: [main]
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: package.json
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Check code formatting
run: npm run format:check