Skip to content

Bump @types/react from 19.0.3 to 19.0.6 in /webview-ui (#1171) #12

Bump @types/react from 19.0.3 to 19.0.6 in /webview-ui (#1171)

Bump @types/react from 19.0.3 to 19.0.6 in /webview-ui (#1171) #12

Workflow file for this run

name: Prettier Check
on:
pull_request:
paths:
- '**/*.ts'
- '**/*.tsx'
push:
branches:
- main
jobs:
prettier-check:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Install dependencies
run: npm install
- name: Run Prettier check
run: npx prettier --check "**/*.{ts,tsx,json,css,md}"