Skip to content

Bump actions/setup-node from 4 to 5 #19

Bump actions/setup-node from 4 to 5

Bump actions/setup-node from 4 to 5 #19

Workflow file for this run

name: "Format Checking"
on:
merge_group:
push:
branches: [main]
pull_request:
# The branches below must be a subset of the branches above
branches: [main]
jobs:
format-checking:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
with:
node-version: 18
- run: npm install
- run: npm run format
- run: git diff --exit-code || exit 1