deps: Update dependency vue to v3 [SECURITY] #3696
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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.0.2 | |
| - 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"]' |