From 35cb16350a0501e55a57e24110d928171f2cab8c Mon Sep 17 00:00:00 2001 From: Ryan Kes Date: Thu, 18 Apr 2024 15:36:39 +0200 Subject: [PATCH] chore: run prettier:format --- .github/workflows/linting.yml | 52 +++++++++++++++++------------------ 1 file changed, 26 insertions(+), 26 deletions(-) diff --git a/.github/workflows/linting.yml b/.github/workflows/linting.yml index babd07e..efd18ad 100644 --- a/.github/workflows/linting.yml +++ b/.github/workflows/linting.yml @@ -9,35 +9,35 @@ jobs: matrix: node-version: [20] steps: - - uses: actions/checkout@v3 - - uses: pnpm/action-setup@v3 - with: - version: 8 - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 - with: - node-version: ${{ matrix.node-version }} - cache: 'pnpm' - - name: Install dependencies - run: pnpm install - - name: Lint prettier - run: pnpm prettier:lint . + - uses: actions/checkout@v3 + - uses: pnpm/action-setup@v3 + with: + version: 8 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v3 + with: + node-version: ${{ matrix.node-version }} + cache: "pnpm" + - name: Install dependencies + run: pnpm install + - name: Lint prettier + run: pnpm prettier:lint . lint-markdown: runs-on: ubuntu-latest strategy: matrix: node-version: [20] steps: - - uses: actions/checkout@v3 - - uses: pnpm/action-setup@v3 - with: - version: 8 - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 - with: - node-version: ${{ matrix.node-version }} - cache: 'pnpm' - - name: Install dependencies - run: pnpm install - - name: Lint markdown - run: pnpm markdown:lint . \ No newline at end of file + - uses: actions/checkout@v3 + - uses: pnpm/action-setup@v3 + with: + version: 8 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v3 + with: + node-version: ${{ matrix.node-version }} + cache: "pnpm" + - name: Install dependencies + run: pnpm install + - name: Lint markdown + run: pnpm markdown:lint .