-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix!: always resolve SHA against provided main branch (#64)
- Loading branch information
Showing
8 changed files
with
2,141 additions
and
24 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
name: "Integration test workflow" | ||
|
||
on: | ||
workflow_call: | ||
inputs: | ||
main-branch-name: | ||
required: false | ||
type: string | ||
default: main | ||
runs-on: | ||
required: false | ||
type: string | ||
default: ubuntu-latest | ||
working-directory: | ||
required: false | ||
type: string | ||
|
||
jobs: | ||
main: | ||
runs-on: ${{ inputs.runs-on }} | ||
name: Run | ||
defaults: | ||
run: | ||
shell: bash | ||
steps: | ||
- uses: actions/checkout@v2 | ||
name: Checkout [Pull Request] | ||
if: ${{ github.event_name == 'pull_request' }} | ||
with: | ||
# By default, PRs will be checked-out based on the Merge Commit, but we want the actual branch HEAD. | ||
ref: ${{ github.event.pull_request.head.sha }} | ||
# We need to fetch all branches and commits so that Nx affected has a base to compare against. | ||
fetch-depth: 0 | ||
|
||
- uses: actions/checkout@v2 | ||
name: Checkout [Default Branch] | ||
if: ${{ github.event_name != 'pull_request' }} | ||
with: | ||
# We need to fetch all branches and commits so that Nx affected has a base to compare against. | ||
fetch-depth: 0 | ||
|
||
- name: Derive appropriate SHAs for base and head for `nx affected` commands | ||
uses: ./ | ||
with: | ||
main-branch-name: ${{ inputs.main-branch-name }} | ||
|
||
- name: Verify default PR Workflow | ||
if: ${{ github.event_name == 'pull_request' }} | ||
run: | | ||
BASE_SHA=$(echo $(git merge-base origin/${{github.base_ref}} HEAD)) | ||
HEAD_SHA=$(git rev-parse HEAD) | ||
node -e "if(process.env.NX_BASE == '${BASE_SHA}') console.log('Base set correctly'); else { throw new Error('Base not set correctly!');}" | ||
node -e "if(process.env.NX_HEAD == '${HEAD_SHA}') console.log('Head set correctly'); else { throw new Error('Head not set correctly!');}" | ||
- name: Verify default Push Workflow | ||
if: ${{ github.event_name != 'pull_request' }} | ||
run: | | ||
BASE_SHA=$(echo $(git rev-parse HEAD~1)) | ||
HEAD_SHA=$(echo $(git rev-parse HEAD)) | ||
node -e "if(process.env.NX_BASE == '${BASE_SHA}') console.log('Base set correctly'); else { throw new Error('Base not set correctly!');}" | ||
node -e "if(process.env.NX_HEAD == '${HEAD_SHA}') console.log('Head set correctly'); else { throw new Error('Head not set correctly!');}" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
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 }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
name: "Test" | ||
|
||
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 | ||
strategy: | ||
matrix: | ||
runs-on: [ubuntu-latest, macos-latest, windows-latest] | ||
fail-fast: false | ||
runs-on: ${{ matrix.runs-on }} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
name: Checkout [Pull Request] | ||
if: ${{ github.event_name == 'pull_request' }} | ||
with: | ||
ref: ${{ github.event.pull_request.head.sha }} | ||
fetch-depth: 0 | ||
|
||
- uses: actions/checkout@v2 | ||
name: Checkout [Push] | ||
if: ${{ github.event_name != 'pull_request' }} | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Set Node.js 16.x | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16 | ||
|
||
- name: Install | ||
run: npm ci | ||
|
||
- name: Compile | ||
run: npm run build | ||
|
||
- name: Test default PR Workflow | ||
if: github.event_name == 'pull_request' | ||
uses: ./ | ||
with: | ||
main-branch-name: ${{ github.base_ref }} | ||
- name: Verify default PR Workflow | ||
if: github.event_name == 'pull_request' | ||
shell: bash | ||
run: | | ||
BASE_SHA=$(echo $(git merge-base origin/${{github.base_ref}} HEAD)) | ||
HEAD_SHA=$(git rev-parse HEAD) | ||
node -e "if(process.env.NX_BASE == '${BASE_SHA}') console.log('Base set correctly'); else { throw new Error('Base not set correctly!');}" | ||
node -e "if(process.env.NX_HEAD == '${HEAD_SHA}') console.log('Head set correctly'); else { throw new Error('Head not set correctly!');}" | ||
- name: Test default Push Workflow | ||
if: github.event_name != 'pull_request' | ||
uses: ./ | ||
with: | ||
main-branch-name: ${{ github.ref_name }} | ||
- name: Verify default Push Workflow | ||
if: github.event_name != 'pull_request' | ||
shell: bash | ||
run: | | ||
BASE_SHA=$(echo $(git rev-parse HEAD~1)) | ||
HEAD_SHA=$(echo $(git rev-parse HEAD)) | ||
node -e "if(process.env.NX_BASE == '${BASE_SHA}') console.log('Base set correctly'); else { throw new Error('Base not set correctly!');}" | ||
node -e "if(process.env.NX_HEAD == '${HEAD_SHA}') console.log('Head set correctly'); else { throw new Error('Head not set correctly!');}" |
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
Oops, something went wrong.