Skip to content

Update GitHub Actions to use latest versions of actions and dependencies #2

Update GitHub Actions to use latest versions of actions and dependencies

Update GitHub Actions to use latest versions of actions and dependencies #2

Workflow file for this run

name: Prettier
on:
pull_request:
push:
branches:
- master
- 'releases/*'
jobs:
prettier:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: '22'
cache: 'npm'
- run: npm ci
- run: npm run format:check