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 6ab1645 commit 37ecf27Copy full SHA for 37ecf27
.github/workflows/lint-test.yml
@@ -22,7 +22,9 @@ jobs:
22
- name: Run tests
23
run: npm test
24
- name: Upload coverage to Codecov
25
- if: ${{ secrets.CODECOV_TOKEN }}
+ env:
26
+ CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
27
+ if: env.CODECOV_TOKEN != null
28
uses: codecov/codecov-action@v4
29
with:
- token: ${{ secrets.CODECOV_TOKEN }}
30
+ token: ${{ env.CODECOV_TOKEN }}
0 commit comments