Skip to content

build(deps-dev): bump @types/node from 20.11.30 to 22.7.7 in /app/web #1183

build(deps-dev): bump @types/node from 20.11.30 to 22.7.7 in /app/web

build(deps-dev): bump @types/node from 20.11.30 to 22.7.7 in /app/web #1183

Workflow file for this run

name: License check
concurrency:
group: ${{ github.run_id }}
cancel-in-progress: true
on:
push:
branches:
- "develop"
- "master"
- "main"
pull_request:
types:
- opened
- reopened
- synchronize
jobs:
web-license:
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@v4
with:
token: ${{ github.token }}
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: '18'
cache: 'npm'
cache-dependency-path: app/web/package-lock.json
- name: Install dependencies
uses: bahmutov/npm-install@v1
with:
working-directory: app/web
- name: Check license headers
working-directory: app/web
run: npm run license:check
video-processing-lambda-license:
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@v4
with:
token: ${{ github.token }}
- name: Check license headers
working-directory: app/video-processing
run: make check-license
video-conversion-lambda-license:
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@v4
with:
token: ${{ github.token }}
- name: Check license headers
working-directory: app/video-conversion
run: make check-license