Skip to content
This repository has been archived by the owner on Feb 9, 2024. It is now read-only.

chore(deps-dev): bump prettier from 3.2.2 to 3.2.5 #597

chore(deps-dev): bump prettier from 3.2.2 to 3.2.5

chore(deps-dev): bump prettier from 3.2.2 to 3.2.5 #597

Workflow file for this run

name: Lint
on: [push, pull_request]
jobs:
prettier:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '18.x'
- name: Restore NPM cache
uses: actions/cache@v3
continue-on-error: true
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- run: npm ci
- run: npm run lint:code