Skip to content

Merge pull request #686 from IgorKowalczyk/renovate/eslint-plugin-ast… #2997

Merge pull request #686 from IgorKowalczyk/renovate/eslint-plugin-ast…

Merge pull request #686 from IgorKowalczyk/renovate/eslint-plugin-ast… #2997

Workflow file for this run

name: Prettier check
on: [push, pull_request]
jobs:
check:
name: Format check
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node: ["lts/*"]
steps:
- name: 🧱 Checkout repository
uses: actions/checkout@v4
- name: 🔩 Setup PNPM
uses: pnpm/action-setup@v3
with:
version: next-9
standalone: true
- name: 🔩 Setup Node ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: "pnpm"
- name: 🚀 Install dependencies
run: pnpm install
- name: 🚀 Check formatting
run: "pnpm run format:check"