Skip to content

Commit bb5bab1

Browse files
chore: remove matrix strategy
1 parent c802fef commit bb5bab1

File tree

1 file changed

+5
-9
lines changed

1 file changed

+5
-9
lines changed

.github/workflows/ci.yml

+5-9
Original file line numberDiff line numberDiff line change
@@ -46,17 +46,14 @@ jobs:
4646
cover:
4747
name: Coverage
4848
needs: eslint
49-
runs-on: ${{matrix.os}}
49+
runs-on: ubuntu-latest
5050
timeout-minutes: 10
51-
strategy:
52-
matrix:
53-
os: [ubuntu-20.04, ubuntu-22.04, ubuntu-latest, macos-latest]
5451
steps:
5552
- name: Set running flag
5653
run: echo "RUNNING=1" >> $GITHUB_ENV
5754
- uses: actions/checkout@v4
5855
- 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
6057
with:
6158
PATTERNS: +(src|__tests__)/**/*.+(js|ts|snap)
6259
FILES: |
@@ -68,13 +65,13 @@ jobs:
6865
run: echo "RUNNING=" >> $GITHUB_ENV
6966
if: "! env.GIT_DIFF"
7067
- 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)"
7269
run: echo "RUNNING=1" >> $GITHUB_ENV
7370
- 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')"
7572
run: echo "RUNNING=1" >> $GITHUB_ENV
7673
- name: Set running flag
77-
if: matrix.os == 'ubuntu-latest' && startsWith(github.ref, 'refs/tags/v')
74+
if: startsWith(github.ref, 'refs/tags/v')
7875
run: echo "RUNNING=1" >> $GITHUB_ENV
7976
- name: Set running flag
8077
run: |
@@ -101,7 +98,6 @@ jobs:
10198
env:
10299
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
103100
COVERAGE_FILE: ./coverage/lcov.info
104-
if: env.RUNNING && matrix.os == 'ubuntu-latest'
105101

106102
release:
107103
name: Release GitHub Actions

0 commit comments

Comments
 (0)