Skip to content

locations will update on there own now #13

locations will update on there own now

locations will update on there own now #13

name: Prettier Check
on:
push: {}
pull_request: {}
jobs:
prettier:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@4
- name: Use latest Node.js
uses: actions/setup-node@v4
with:
node-version: 'node' # Use 'node' for latest stable version
- name: Install dependencies
run: npm ci # Or yarn install if you use Yarn
- name: Run Prettier check
run: npx prettier --check '**/*.{js,ts}'