chore(deps-dev): bump semantic-release from 23.0.6 to 23.1.1 #101
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
name: PR Validation | |
on: | |
pull_request_target: | |
types: | |
- opened | |
- reopened | |
- edited | |
- synchronize | |
permissions: | |
contents: read # for checkout | |
jobs: | |
lint-title: | |
runs-on: ubuntu-latest | |
permissions: | |
statuses: write | |
steps: | |
- uses: aslafy-z/conventional-pr-title-action@v3 | |
with: | |
preset: conventional-changelog-angular | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
verify: | |
runs-on: ubuntu-latest | |
permissions: | |
statuses: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "lts/*" | |
- name: Install dependencies | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
run_install: | | |
- recursive: true | |
# @see https://github.com/npm/cli/issues/7279 | |
- name: Update npm to latest | |
run: npm install -g npm | |
- name: Verify the integrity of provenance attestations and registry signatures for installed dependencies | |
run: npm audit signatures | |
lint-code: | |
runs-on: ubuntu-latest | |
permissions: | |
statuses: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "lts/*" | |
- name: Install dependencies | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
run_install: | | |
- recursive: true | |
- name: Run ESLint | |
run: pnpm lint |