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 3c507c6 commit e11510fCopy full SHA for e11510f
.github/workflows/ci.yml
@@ -35,19 +35,14 @@ jobs:
35
- name: Run unit tests
36
run: yarn test:cov
37
38
- - name: Backup .yarnrc.yml
+ - name: Make .yarnrc.yml untracked before badge update
39
run: |
40
- cp .yarnrc.yml .yarnrc.yml.bak
41
- git checkout -- .yarnrc.yml || true
+ git rm --cached .yarnrc.yml
+ git update-index --assume-unchanged .yarnrc.yml
42
43
- name: Update Coverage Badge
44
if: github.ref == format('refs/heads/{0}', github.event.repository.default_branch)
45
uses: we-cli/coverage-badge-action@main
46
-
47
- - name: Restore .yarnrc.yml
48
- run: |
49
- cp .yarnrc.yml.bak .yarnrc.yml
50
- rm .yarnrc.yml.bak
51
52
build-library:
53
runs-on: ubuntu-latest
0 commit comments