We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent caba021 commit f006b8eCopy full SHA for f006b8e
.github/workflows/pr.yml
@@ -93,6 +93,10 @@ jobs:
93
runs-on: ubuntu-latest
94
steps:
95
- uses: actions/checkout@v3
96
+ with:
97
+ fetch-depth: 0
98
+ ref: ${{ github.head_ref }}
99
+ repository: ${{github.event.pull_request.head.repo.full_name}}
100
- uses: pnpm/[email protected]
101
with:
102
version: 7
@@ -102,6 +106,10 @@ jobs:
106
cache: 'pnpm'
103
107
- name: Install dependencies
104
108
run: pnpm --filter "./packages/**" --filter form --prefer-offline install --no-frozen-lockfile
109
+ - name: Get appropriate base and head commits for `nx affected` commands
110
+ uses: nrwl/nx-set-shas@v3
111
112
+ main-branch-name: 'main'
105
113
- run: pnpm run test:build
114
env:
115
BUNDLEWATCH_GITHUB_TOKEN: ${{ secrets.BUNDLEWATCH_GITHUB_TOKEN }}
0 commit comments