Skip to content

Bump prettier from 3.0.1 to 3.0.2 #126

Bump prettier from 3.0.1 to 3.0.2

Bump prettier from 3.0.1 to 3.0.2 #126

Workflow file for this run

name: Config npm
on:
pull_request:
paths:
- .github/workflows/config-npm.yml
- package.json
push:
branches:
- main
paths:
- .github/workflows/config-npm.yml
- package.json
permissions: read-all
jobs:
package-json:
name: package.json
runs-on: ubuntu-22.04
steps:
- name: Harden runner
uses: step-security/harden-runner@8ca2b8b2ece13480cda6dacd3511b49857a23c09 # v2.5.1
with:
disable-sudo: true
egress-policy: block
allowed-endpoints: >
actions-results-receiver-production.githubapp.com:443
api.github.com:443
artifactcache.actions.githubusercontent.com:443
github.com:443
gitlab.com:443
nodejs.org:443
objects.githubusercontent.com:443
registry.npmjs.org:443
- name: Checkout repository
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
- name: Install Node.js
uses: actions/setup-node@bea5baf987ba7aa777a8a0b4ace377a21c45c381 # v3.8.0
with:
cache: npm
node-version-file: .nvmrc
- name: Install dependencies
run: npm clean-install
- name: Validate package.json
run: npm run lint:package.json