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 e11510f commit 77cc5e9Copy full SHA for 77cc5e9
.github/workflows/ci.yml
@@ -35,11 +35,12 @@ jobs:
35
- name: Run unit tests
36
run: yarn test:cov
37
38
- - name: Make .yarnrc.yml untracked before badge update
+ - name: Reset .yarnrc.yml changes
39
run: |
40
- git rm --cached .yarnrc.yml
41
- git update-index --assume-unchanged .yarnrc.yml
42
-
+ git config --global user.name "GitHub Actions"
+ git config --global user.email "actions@github.com"
+ git checkout HEAD -- .yarnrc.yml
43
+
44
- name: Update Coverage Badge
45
if: github.ref == format('refs/heads/{0}', github.event.repository.default_branch)
46
uses: we-cli/coverage-badge-action@main
0 commit comments