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 6501654 commit 187c04dCopy full SHA for 187c04d
.github/workflows/pr-jest-tests.yml
@@ -18,6 +18,19 @@ jobs:
18
steps:
19
- name: Checkout Repository
20
uses: actions/checkout@v4
21
+ with:
22
+ fetch-depth: 0 # Ensures full history is fetched
23
+
24
+ - name: Configure Git User
25
+ run: |
26
+ git config --global user.email "[email protected]"
27
+ git config --global user.name "GitHub Actions"
28
29
+ - name: Merge PR with Master (Simulated)
30
31
+ git fetch origin master
32
+ git checkout -b test-merged-pr
33
+ git merge origin/master --no-edit
34
35
- name: Setup Node.js
36
uses: actions/setup-node@v4
0 commit comments