Fetch only required branch

This commit is contained in:
Adria Navarro 2023-08-08 12:14:22 +03:00
parent 5eb49fbb29
commit 62bb5bb4ff
1 changed files with 4 additions and 4 deletions

View File

@ -18,7 +18,7 @@ env:
BRANCH: ${{ github.event.pull_request.head.ref }} BRANCH: ${{ github.event.pull_request.head.ref }}
BASE_BRANCH: ${{ github.event.pull_request.base.ref}} BASE_BRANCH: ${{ github.event.pull_request.base.ref}}
PERSONAL_ACCESS_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }} PERSONAL_ACCESS_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
NX_BASE_BRANCH: origin/${{ github.base_ref || 'master'}} NX_BASE_BRANCH: ${{ github.base_ref || 'master'}}
jobs: jobs:
lint: lint:
@ -62,7 +62,7 @@ jobs:
cache: "yarn" cache: "yarn"
- run: yarn --frozen-lockfile - run: yarn --frozen-lockfile
- name: Fetch remote references - name: Fetch remote references
run: git fetch origin "+refs/heads/*:refs/remotes/origin/*" run: git fetch origin ${{ env.NX_BASE_BRANCH }}
# Run build all the projects # Run build all the projects
- run: yarn build --since=${{ env.NX_BASE_BRANCH }} - run: yarn build --since=${{ env.NX_BASE_BRANCH }}
# Check the types of the projects built via esbuild # Check the types of the projects built via esbuild
@ -88,7 +88,7 @@ jobs:
cache: "yarn" cache: "yarn"
- run: yarn --frozen-lockfile - run: yarn --frozen-lockfile
- name: Fetch remote references - name: Fetch remote references
run: git fetch origin "+refs/heads/*:refs/remotes/origin/*" run: git fetch origin ${{ env.NX_BASE_BRANCH }}
- run: yarn test --ignore=@budibase/worker --ignore=@budibase/server --ignore=@budibase/pro --since=${{ env.NX_BASE_BRANCH }} - run: yarn test --ignore=@budibase/worker --ignore=@budibase/server --ignore=@budibase/pro --since=${{ env.NX_BASE_BRANCH }}
- uses: codecov/codecov-action@v3 - uses: codecov/codecov-action@v3
with: with:
@ -116,7 +116,7 @@ jobs:
cache: "yarn" cache: "yarn"
- run: yarn --frozen-lockfile - run: yarn --frozen-lockfile
- name: Fetch remote references - name: Fetch remote references
run: git fetch origin "+refs/heads/*:refs/remotes/origin/*" run: git fetch origin ${{ env.NX_BASE_BRANCH }}
- name: Test worker and server - name: Test worker and server
run: yarn test --scope=@budibase/worker --scope=@budibase/server --since=${{ env.NX_BASE_BRANCH }} run: yarn test --scope=@budibase/worker --scope=@budibase/server --since=${{ env.NX_BASE_BRANCH }}
- uses: codecov/codecov-action@v3 - uses: codecov/codecov-action@v3