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 30fa5b3 commit 622a5acCopy full SHA for 622a5ac
.github/workflows/code-pushup.yml
@@ -26,16 +26,19 @@ jobs:
26
steps:
27
- name: Checkout repository
28
uses: actions/checkout@v4
29
+ with:
30
+ fetch-depth: 0
31
- name: Set up Node.js
32
uses: actions/setup-node@v4
33
with:
34
node-version-file: .nvmrc
35
cache: npm
36
- name: Set base and head for Nx affected commands
37
+ id: nx-set-shas
38
uses: nrwl/nx-set-shas@v4
39
- name: Install dependencies
40
run: npm ci
41
- name: Run Code PushUp action
42
uses: code-pushup/github-action@v0
43
- bin: npx nx affected -t code-pushup --parallel=3 --
44
+ bin: npx nx affected -t code-pushup --parallel=3 --base=${{ steps.nx-set-shas.outputs.base }} --head=${{ steps.nx-set-shas.outputs.head }} --
0 commit comments