Skip to content

chore(deps-dev): bump the security-updates group with 3 updates #16

chore(deps-dev): bump the security-updates group with 3 updates

chore(deps-dev): bump the security-updates group with 3 updates #16

Workflow file for this run

name: Check licenses
on:
pull_request:
types:
- opened
paths:
- .npmrc
- package.json
- pnpm-lock.yaml
push:
branches:
- '**'
paths:
- .npmrc
- package.json
- pnpm-lock.yaml
env:
PNPM_CACHE_FOLDER: .pnpm-store
SKIP_INSTALL_SIMPLE_GIT_HOOKS: 1 # Skip installing simple-git-hooks
jobs:
check-licenses:
name: Check licenses
runs-on: ubuntu-24.04
strategy:
matrix:
node-version: [20]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: Run License Checker
run: pnpm run check-licenses