Adding the ability to get the NX_BASE after commits with [skip-ci] type messages #173
This file contains 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: "Test Integration" | |
on: | |
push: | |
paths-ignore: | |
- "**.md" | |
pull_request: | |
paths-ignore: | |
- "**.md" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
name: Test workflow integration | |
strategy: | |
matrix: | |
runs-on: [ubuntu-latest, macos-latest, windows-latest] | |
fail-fast: false | |
uses: ./.github/workflows/integration-test-workflow.yml | |
with: | |
working-directory: integration-test | |
main-branch-name: ${{ github.event_name == 'pull_request' && github.base_ref || github.ref_name }} | |
runs-on: ${{ matrix.runs-on }} |