Skip to content

chore: bump @npmcli/template-oss from 4.21.3 to 4.21.4 #434

chore: bump @npmcli/template-oss from 4.21.3 to 4.21.4

chore: bump @npmcli/template-oss from 4.21.3 to 4.21.4 #434

Workflow file for this run

# This file is automatically added by @npmcli/template-oss. Do not edit.
name: Pull Request
on:
pull_request:
types:
- opened
- reopened
- edited
- synchronize
jobs:
commitlint:
name: Lint Commits
if: github.repository_owner == 'npm'
runs-on: ubuntu-latest
defaults:
run:
shell: bash
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Git User
run: |
git config --global user.email "npm-cli+bot@github.com"
git config --global user.name "npm CLI robot"
- name: Setup Node
uses: actions/setup-node@v3
id: node
with:
node-version: 20.x
check-latest: contains('20.x', '.x')
- name: Remove Template-OSS
if: matrix && matrix.node-version == '6.17.1'
run: |
# template-oss cannot be installed on older npms because there are transient deps
# that use "npm:" aliases which are not supported
jq 'del(.devDependencies["@npmcli/template-oss"])' package.json > package.json-update
mv package.json-update package.json
- name: Install Dependencies
run: npm i --ignore-scripts --no-audit --no-fund
- name: Run Commitlint on Commits
id: commit
continue-on-error: true
run: npx --offline commitlint -V --from 'origin/${{ github.base_ref }}' --to ${{ github.event.pull_request.head.sha }}
- name: Run Commitlint on PR Title
if: steps.commit.outcome == 'failure'
env:
PR_TITLE: ${{ github.event.pull_request.title }}
run: echo "$PR_TITLE" | npx --offline commitlint -V