Skip to content

Bump step-security/harden-runner from 2.10.3 to 2.10.4 (#1191) #33

Bump step-security/harden-runner from 2.10.3 to 2.10.4 (#1191)

Bump step-security/harden-runner from 2.10.3 to 2.10.4 (#1191) #33

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@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
with:
node-version: '20'
- name: Install dependencies
run: |
npm install
- name: Run Prettier check
run: npx prettier --check "**/*.{ts,tsx,json,css,md}"