Skip to content

chore(deps): bump prettier from 3.1.1 to 3.2.2 #404

chore(deps): bump prettier from 3.1.1 to 3.2.2

chore(deps): bump prettier from 3.1.1 to 3.2.2 #404

Workflow file for this run

name: Lint
on:
push:
branches:
- master
pull_request:
permissions:
contents: read
jobs:
lint:
name: Lint JS
runs-on: ubuntu-latest
env:
CI: true
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{github.event.pull_request.head.ref}}
fetch-depth: 0
- name: Setup Node 🔧
uses: actions/setup-node@v4
with:
node-version: "18"
cache: "npm"
- name: Install Dependencies 🔧
run: npm ci
- name: Lint
run: npm run lint