mirror of
https://gitea.com/actions/checkout.git
synced 2024-11-01 09:30:34 +01:00
6c55aedc44
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
14 lines
245 B
YAML
14 lines
245 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@v4
|
|
- run: npm ci
|
|
- run: npm run licensed-check |