Skip to content

chore: add route.from property to RouterView::route (#2872) #7654

chore: add route.from property to RouterView::route (#2872)

chore: add route.from property to RouterView::route (#2872) #7654

Workflow file for this run

name: 'Run CodeQL'
# Ensures that only one workflow is run per branch at a time.
concurrency:
cancel-in-progress: true
group: ${{ github.workflow }}-${{ github.head_ref || github.ref_name }}
on:
push:
branches: [master, 'release-[0-9]+.[0-9]+']
pull_request:
branches: [master, 'release-[0-9]+.[0-9]+']
schedule:
- cron: '31 11 * * 4'
permissions:
contents: read # for checking out the repository (e.g. actions/checkout)
jobs:
analyze:
name: Run CodeQL
runs-on: ubuntu-latest
permissions:
security-events: write # for adding code alert statuses
strategy:
fail-fast: false
matrix:
language: [javascript]
steps:
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
- uses: github/codeql-action/init@c36620d31ac7c881962c3d9dd939c40ec9434f2b # v3.26.12
with:
languages: ${{ matrix.language }}
- uses: github/codeql-action/autobuild@c36620d31ac7c881962c3d9dd939c40ec9434f2b # v3.26.12
- uses: github/codeql-action/analyze@c36620d31ac7c881962c3d9dd939c40ec9434f2b # v3.26.12
with:
category: '/language:${{matrix.language}}'