Skip to content

chore(deps): update actions/dependency-review-action action to v3.1.5 #1253

chore(deps): update actions/dependency-review-action action to v3.1.5

chore(deps): update actions/dependency-review-action action to v3.1.5 #1253

Workflow file for this run

# This workflow uses npm to install the dependencies, and then lint the files with Prettier.
# This workflow is adapted from the one that the Prettier project uses.
# It is licensed under the MIT license.
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Prettier
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- name: Checkout repository
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # v4.0.1
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- name: Install dependencies with npm
run: npm ci
- name: Lint files with Prettier
run: npm run prettier