Skip to content

Bump actions/upload-artifact from 4.5.0 to 4.6.0 (#1174) #9

Bump actions/upload-artifact from 4.5.0 to 4.6.0 (#1174)

Bump actions/upload-artifact from 4.5.0 to 4.6.0 (#1174) #9

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}"