chore(deps): update dependency eslint to v9 #1209
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# SPDX-FileCopyrightText: 2023 HH Partners | |
# | |
# SPDX-License-Identifier: MIT | |
name: Check formatting | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
prettier: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22.13.1 | |
cache: "npm" | |
- name: Install dependencies | |
run: |- | |
npm ci | |
- name: Run Prettier | |
run: |- | |
npm run prettier:check |