Skip to content

Bump eslint from 9.18.0 to 9.19.0 in /webview-ui (#1202) #56

Bump eslint from 9.18.0 to 9.19.0 in /webview-ui (#1202)

Bump eslint from 9.18.0 to 9.19.0 in /webview-ui (#1202) #56

Workflow file for this run

name: Prettier Check
on:
pull_request:
paths:
- '**/*.ts'
- '**/*.tsx'
push:
branches:
- main
jobs:
prettier-check:
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
deployments: read
packages: none
steps:
- name: Checkout repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Setup Node.js
uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4.2.0
with:
node-version: '20'
- name: Install dependencies
run: |
npm install
- name: Run Prettier check
run: npx prettier --check "**/*.{ts,tsx,json,css,md}"