Skip to content

Commit e623b5a

Browse files
committed
ci: preserve existing workflow labels
1 parent 954d218 commit e623b5a

1 file changed

Lines changed: 14 additions & 14 deletions

File tree

.github/workflows/validate.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -30,18 +30,18 @@ jobs:
3030
node: [18, 24]
3131
runs-on: ubuntu-latest
3232
steps:
33-
- name: Checkout repo
33+
- name: ⬇️ Checkout repo
3434
uses: actions/checkout@v3
3535
with:
3636
# required by codecov/codecov-action
3737
fetch-depth: 0
3838

39-
- name: Setup node
39+
- name: Setup node
4040
uses: actions/setup-node@v3
4141
with:
4242
node-version: ${{ matrix.node }}
4343

44-
- name: Download deps
44+
- name: 📥 Download deps
4545
uses: bahmutov/npm-install@v1
4646
with:
4747
useLockFile: false
@@ -50,10 +50,10 @@ jobs:
5050
- name: Verify format (`npm run format` committed?)
5151
run: npm run format -- --check --no-write
5252

53-
- name: Run validate script
53+
- name: ▶️ Run validate script
5454
run: npm run validate
5555

56-
- name: Upload coverage report
56+
- name: ⬆️ Upload coverage report
5757
uses: codecov/codecov-action@v4
5858
with:
5959
fail_ci_if_error: true
@@ -67,21 +67,21 @@ jobs:
6767
contents: read
6868
if: ${{ github.repository == 'testing-library/dom-testing-library' && github.event_name == 'push' }}
6969
steps:
70-
- name: Checkout repo
70+
- name: ⬇️ Checkout repo
7171
uses: actions/checkout@v3
7272

73-
- name: Setup node
73+
- name: Setup node
7474
uses: actions/setup-node@v3
7575
with:
7676
node-version: 24
7777

78-
- name: Install dependencies
78+
- name: 📥 Download deps
7979
run: npm install --ignore-scripts
8080

81-
- name: Run build script
81+
- name: 🏗 Run build script
8282
run: npm run build
8383

84-
- name: Upload package artifact
84+
- name: 📦 Upload package artifact
8585
uses: actions/upload-artifact@v4
8686
with:
8787
name: npm-package-dist
@@ -99,22 +99,22 @@ jobs:
9999
pull-requests: write
100100
if: ${{ github.repository == 'testing-library/dom-testing-library' && github.event_name == 'push' }}
101101
steps:
102-
- name: Checkout repo
102+
- name: ⬇️ Checkout repo
103103
uses: actions/checkout@v3
104104

105-
- name: Setup node
105+
- name: Setup node
106106
uses: actions/setup-node@v3
107107
with:
108108
node-version: 24
109109
registry-url: 'https://registry.npmjs.org/'
110110

111-
- name: Download package artifact
111+
- name: 📦 Download package artifact
112112
uses: actions/download-artifact@v4
113113
with:
114114
name: npm-package-dist
115115
path: dist
116116

117-
- name: Release
117+
- name: 🚀 Release
118118
uses: cycjimmy/semantic-release-action@v5
119119
with:
120120
semantic_version: 25

0 commit comments

Comments
 (0)