Fix #286: Add Nav::activateParents() that makes parent dropdown active when one of its child items is active
#1366
Workflow file for this run
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: mutation test | |
| permissions: | |
| contents: read | |
| on: | |
| pull_request: &ignore-paths | |
| paths-ignore: | |
| - 'docs/**' | |
| - 'README.md' | |
| - 'CHANGELOG.md' | |
| - '.gitignore' | |
| - '.gitattributes' | |
| - 'infection.json.dist' | |
| - 'psalm.xml' | |
| push: | |
| <<: *ignore-paths | |
| branches: ['master'] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| mutation: | |
| uses: yiisoft/actions/.github/workflows/roave-infection.yml@master | |
| secrets: | |
| STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }} | |
| with: | |
| php: >- | |
| ['8.5'] |