Skip to content
This repository was archived by the owner on Jun 29, 2025. It is now read-only.

Bump eslint-plugin-prettier from 4.2.1 to 5.4.0 #1122

Bump eslint-plugin-prettier from 4.2.1 to 5.4.0

Bump eslint-plugin-prettier from 4.2.1 to 5.4.0 #1122

Workflow file for this run

name: "ci"
on:
pull_request:
push:
branches:
- master
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4.2.0
with:
node-version: '18.x'
- run: npm ci --no-progress
- run: npm run lint
test:
name: Test using Node.js ${{ matrix.node }} running on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: [18, 20, 22]
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v4.2.0
with:
node-version: ${{ matrix.node }}
- run: npm ci --no-progress
- run: npm test