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 1879e4b commit 8594153Copy full SHA for 8594153
.github/workflows/tests.yml
@@ -21,10 +21,13 @@ jobs:
21
steps:
22
- uses: actions/checkout@v2
23
if: github.event.inputs.git-ref == ''
24
+ with:
25
+ fetch-depth: 0 # always fetch everything to be sure for codecov
26
27
if: github.event.inputs.git-ref != ''
28
with:
29
ref: ${{ github.event.inputs.git-ref }}
30
+ fetch-depth: 5 # because this is an manual trigger, only fetch the latest 5
31
- name: Use Node.js ${{ matrix.node-version }}
32
uses: actions/setup-node@v1
33
0 commit comments