mirror of
https://github.com/actions/checkout.git
synced 2025-12-16 12:22:36 +00:00
14 lines
293 B
YAML
14 lines
293 B
YAML
name: Licensed
|
|
|
|
on:
|
|
push: {branches: main}
|
|
pull_request: {branches: main}
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
name: Check licenses
|
|
steps:
|
|
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
|
- run: npm ci
|
|
- run: npm run licensed-check
|