mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-14 13:21:10 +00:00
e0a2c78a43
Bumps [actions/setup-node](https://github.com/actions/setup-node) from 3.8.0 to 3.8.1. - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v3.8.0...v3.8.1) --- updated-dependencies: - dependency-name: actions/setup-node dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
27 lines
648 B
YAML
27 lines
648 B
YAML
name: Check licenses
|
|
|
|
on:
|
|
pull_request:
|
|
|
|
jobs:
|
|
check-licenses:
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- name: Checkout sources
|
|
uses: actions/checkout@v3
|
|
- uses: actions/setup-node@v3.8.1
|
|
with:
|
|
node-version: '18.x'
|
|
registry-url: 'https://npm.pkg.github.com'
|
|
scope: '@paritytech'
|
|
- name: Check the licenses
|
|
run: |
|
|
shopt -s globstar
|
|
|
|
npx @paritytech/license-scanner@0.0.5 scan \
|
|
--ensure-licenses=Apache-2.0 \
|
|
--ensure-licenses=GPL-3.0-only \
|
|
./**/*.rs
|
|
env:
|
|
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|