Skip to content

Bump prettier from 3.7.4 to 3.8.0 #473

Bump prettier from 3.7.4 to 3.8.0

Bump prettier from 3.7.4 to 3.8.0 #473

Workflow file for this run

# Copyright Kani Contributors
# SPDX-License-Identifier: Apache-2.0 OR MIT
name: Format Check
on: pull_request
permissions:
contents: read
jobs:
format-check:
runs-on: ubuntu-latest
steps:
- name: Checkout this repo
uses: actions/checkout@v6
- name: Execute copyright check
run: ./scripts/run-copyright-check.sh
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 24
- name: Check TS linting
run: |
npm install
npm run lint
- name: Check TS formatting
run : |
npm ci
npm run prettier:check:ci
- name: Check Compilation Compatibility
run : |
npm run compile