Bump eslint from 9.17.0 to 9.18.0 #279
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: LicenseFinder CI | |
permissions: {} | |
on: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
push: | |
branches: | |
- "**" | |
jobs: | |
test: | |
name: Check dependencies license | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Enable corepack | |
run: corepack enable | |
- name: Install Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22.x | |
- name: Install dependencies | |
run: pnpm install | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '3.3' | |
- name: Install LicenseFinder | |
run: gem install license_finder | |
- name: Run LicenseFinder | |
run: license_finder --decisions_file ./.github/dependency_decisions.yml |