Skip to content

Update dependency @igorkowalczyk/prettier-config to v1.4.1 #396

Update dependency @igorkowalczyk/prettier-config to v1.4.1

Update dependency @igorkowalczyk/prettier-config to v1.4.1 #396

Workflow file for this run

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