Skip to content

Merge pull request #181 from IgorKowalczyk/renovate/mongoose-7.x #689

Merge pull request #181 from IgorKowalczyk/renovate/mongoose-7.x

Merge pull request #181 from IgorKowalczyk/renovate/mongoose-7.x #689

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:
language: ["javascript"]
node: ["16.x"]
steps:
- name: 馃П Checkout repository
uses: actions/checkout@v3
- name: 馃敥 Setup PNPM
uses: pnpm/action-setup@v2
with:
version: 7
- 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"