Skip to content

Commit 27e39d0

Browse files
Emoji direction arrows
1 parent 835112a commit 27e39d0

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/workflows/release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
steps:
1111
- name: Checkout
1212
uses: actions/checkout@v2
13-
- name: Use Node.js ${{ matrix.node-version }}
13+
- name: Use Node.js
1414
uses: actions/setup-node@v1
1515
with:
16-
node-version: 14.x
16+
node-version: 16.x
1717
- name: Install dependencies
1818
run: npx ci
1919
- name: Lint

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
timeout-minutes: 10
1212
strategy:
1313
matrix:
14-
node-version: [ 10.x, 14.x ]
14+
node-version: [ 16.x ]
1515
steps:
1616
- name: Checkout
1717
uses: actions/checkout@v2

dist/index.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/report-templates/regression/index.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/report-templates/regression/index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ import comparePackages from './compare-packages.js';
1414

1515
const directionSymbol = (value) => {
1616
if (value < 0) {
17-
return ':arrow_down:';
17+
return ' :arrow_down:';
1818
}
1919

2020
if (value > 0) {
21-
return ':arrow_up:';
21+
return ' :arrow_up:';
2222
}
2323

2424
return '';

0 commit comments

Comments
 (0)