@@ -46,17 +46,14 @@ jobs:
46
46
cover :
47
47
name : Coverage
48
48
needs : eslint
49
- runs-on : ${{matrix.os}}
49
+ runs-on : ubuntu-latest
50
50
timeout-minutes : 10
51
- strategy :
52
- matrix :
53
- os : [ubuntu-20.04, ubuntu-22.04, ubuntu-latest, macos-latest]
54
51
steps :
55
52
- name : Set running flag
56
53
run : echo "RUNNING=1" >> $GITHUB_ENV
57
54
- uses : actions/checkout@v4
58
55
- uses : technote-space/get-git-comment-action@v1
59
- - uses : PlatziDev /get-diff-action@gh-actions
56
+ - uses : technote-space /get-diff-action@v6.1.2
60
57
with :
61
58
PATTERNS : +(src|__tests__)/**/*.+(js|ts|snap)
62
59
FILES : |
@@ -68,13 +65,13 @@ jobs:
68
65
run : echo "RUNNING=" >> $GITHUB_ENV
69
66
if : " ! env.GIT_DIFF"
70
67
- name : Set running flag
71
- if : " matrix.os == 'ubuntu-latest' && ! startsWith(github.ref, 'refs/tags/') && github.event.base_ref == format('refs/heads/{0}', github.event.repository.default_branch)"
68
+ if : " ! startsWith(github.ref, 'refs/tags/') && github.event.base_ref == format('refs/heads/{0}', github.event.repository.default_branch)"
72
69
run : echo "RUNNING=1" >> $GITHUB_ENV
73
70
- name : Set running flag
74
- if : " matrix.os == 'ubuntu-latest' && ! startsWith(github.ref, 'refs/tags/') && startsWith(github.base_ref, 'refs/heads/develop/v')"
71
+ if : " ! startsWith(github.ref, 'refs/tags/') && startsWith(github.base_ref, 'refs/heads/develop/v')"
75
72
run : echo "RUNNING=1" >> $GITHUB_ENV
76
73
- name : Set running flag
77
- if : matrix.os == 'ubuntu-latest' && startsWith(github.ref, 'refs/tags/v')
74
+ if : startsWith(github.ref, 'refs/tags/v')
78
75
run : echo "RUNNING=1" >> $GITHUB_ENV
79
76
- name : Set running flag
80
77
run : |
101
98
env :
102
99
CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }}
103
100
COVERAGE_FILE : ./coverage/lcov.info
104
- if : env.RUNNING && matrix.os == 'ubuntu-latest'
105
101
106
102
release :
107
103
name : Release GitHub Actions
0 commit comments