Skip to content

deps: Update all non-major dependencies #3438

deps: Update all non-major dependencies

deps: Update all non-major dependencies #3438

Workflow file for this run

name: Checks
on:
pull_request:
branches:
- master
- develop
jobs:
changelog-check:
strategy:
matrix:
os: [ubuntu-latest]
node-version: [14.x]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: 'ChangeLog Reminder'
uses: ./.github/actions/changelog-reminder
with:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PROJECT_ROOTS: '["raiden-ts", "raiden-dapp"]'
CHANGELOG_FILE: 'CHANGELOG.md'
block-fixup:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.6.0
- name: 'Block Fixup Commit Merge'
uses: 13rac1/block-fixup-merge-action@v2.0.0
license-check:
name: License Checker
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
workspace: ['raiden-ts', 'raiden-dapp', 'raiden-cli']
steps:
- uses: actions/checkout@v3
- name: Check licenses for workspace
uses: ./.github/actions/license-checker
with:
YARN_WORKSPACE: ${{ matrix.workspace }}
ALLOWED_LICENSE_NAMES: '["MIT", "ISC", "BSD", "BSD-2-Clause", "Apache-2.0", "LGPL-3.0"]'