build: bump prettier from 3.4.0 to 3.4.1 #651
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Unique name for this workflow | |
name: CI | |
# Definition when the workflow should run | |
on: | |
workflow_dispatch: | |
pull_request: | |
types: [edited, opened, synchronize, reopened, review_requested] | |
push: | |
#branches: | |
# - main | |
paths: | |
- "force-app/**" | |
- "sample-handler/**" | |
- "sfdx-project.json" | |
- "package-lock.json" | |
- "pmd/**" | |
# Jobs to be executed | |
jobs: | |
format-lint: | |
runs-on: ubuntu-latest | |
if: ${{ github.actor != 'dependabot[bot]' }} | |
steps: | |
# Checkout the source code | |
- name: "Checkout source code" | |
uses: actions/checkout@v4 | |
# Cache node_modules to speed up the process | |
- name: "Restore node_modules cache" | |
id: cache-npm | |
uses: actions/cache@v4 | |
with: | |
path: node_modules | |
key: npm-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
npm-${{ env.cache-name }}- | |
npm- | |
# Install npm dependencies for Prettier and Jest | |
- name: "Install npm dependencies" | |
if: steps.cache-npm.outputs.cache-hit != 'true' | |
run: npm ci | |
# Prettier format check | |
- name: "Code formatting verification with Prettier" | |
run: npm run prettier:verify | |
pmd-analysis: | |
runs-on: ubuntu-latest | |
if: ${{ github.actor != 'dependabot[bot]' }} | |
steps: | |
# Checkout the source code | |
- name: "Checkout source code" | |
uses: actions/checkout@v4 | |
# Install PMD | |
- name: "Install PMD" | |
run: | | |
PMD_VERSION=$(curl -s https://api.github.com/repos/pmd/pmd/releases/latest | grep '.tag_name' | sed 's:.*/::' | sed 's:",::') | |
wget https://github.com/pmd/pmd/releases/download/pmd_releases%2F$PMD_VERSION/pmd-dist-$PMD_VERSION-bin.zip | |
unzip pmd-dist-$PMD_VERSION-bin.zip -d ~ | |
mv ~/pmd-bin-$PMD_VERSION ~/pmd | |
~/pmd/bin/pmd --version | |
# Run PMD scan | |
- name: "Run PMD scan" | |
run: ~/pmd/bin/pmd check --dir force-app --dir sample-handler --rulesets pmd/ruleset.xml --format csv --no-cache --verbose --report-file pmd/pmd.csv |