Skip to content

Commit 99af212

Browse files
TrottBethGriggs
authored andcommittedSep 21, 2021
tools,build: update YAML files in preparation for linting
Fix indentation, traiiling spaces, and missing newline issues in preparation for linting. PR-URL: #40007 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com>
1 parent 0b30867 commit 99af212

5 files changed

+16
-16
lines changed
 

‎.github/workflows/comment-labeled.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
steps:
1313
- name: Post stalled comment
1414
env:
15-
COMMENTS_URL: ${{ github.event.issue.comments_url || github.event.pull_request.comments_url }}
15+
COMMENTS_URL: ${{ github.event.issue.comments_url || github.event.pull_request.comments_url }}
1616
run: |
1717
curl -X POST $COMMENTS_URL \
1818
-H "Content-Type: application/json" \

‎.github/workflows/coverage-linux.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
- name: Report JS
4646
run: npx c8 report --check-coverage
4747
env:
48-
NODE_OPTIONS: --max-old-space-size=8192
48+
NODE_OPTIONS: --max-old-space-size=8192
4949
- name: Report C++
5050
run: cd out && gcovr --gcov-exclude='.*\b(deps|usr|out|obj|cctest|embedding)\b' -v -r Release/obj.target --xml -o ../coverage/coverage-cxx.xml --root=$(cd ../ && pwd)
5151
# Clean temporary output from gcov and c8, so that it's not uploaded:

‎.github/workflows/find-inactive-collaborators.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ env:
1313

1414
jobs:
1515
find:
16-
16+
1717
runs-on: ubuntu-latest
1818

1919
steps:

‎.github/workflows/notify-force-push.yml

+12-12
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,16 @@ jobs:
1111
if: ${{ github.event.forced && github.repository == 'nodejs/node' }}
1212
runs-on: ubuntu-latest
1313
steps:
14-
- name: Slack Notification
15-
uses: rtCamp/action-slack-notify@master
16-
env:
17-
SLACK_COLOR: '#DE512A'
18-
SLACK_ICON: https://github.com/nodejs.png?size=48
19-
SLACK_TITLE: '${{ github.actor }} force-pushed to ${{ github.ref }}'
20-
SLACK_MESSAGE: |
21-
A commit was force-pushed to <https://github.com/${{ github.repository }}/tree/${{ github.repository.default_branch }}|${{ github.repository }}@${{ github.repository.default_branch }}> by <https://github.com/${{ github.actor }}|${{ github.actor }}>
14+
- name: Slack Notification
15+
uses: rtCamp/action-slack-notify@master
16+
env:
17+
SLACK_COLOR: '#DE512A'
18+
SLACK_ICON: https://github.com/nodejs.png?size=48
19+
SLACK_TITLE: '${{ github.actor }} force-pushed to ${{ github.ref }}'
20+
SLACK_MESSAGE: |
21+
A commit was force-pushed to <https://github.com/${{ github.repository }}/tree/${{ github.repository.default_branch }}|${{ github.repository }}@${{ github.repository.default_branch }}> by <https://github.com/${{ github.actor }}|${{ github.actor }}>
2222
23-
Before: <https://github.com/${{ github.repository }}/commit/${{ github.event.before }}|${{ github.event.before }}>
24-
After: <https://github.com/${{ github.repository }}/commit/${{ github.event.after }}|${{ github.event.after }}>
25-
SLACK_USERNAME: nodejs-bot
26-
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
23+
Before: <https://github.com/${{ github.repository }}/commit/${{ github.event.before }}|${{ github.event.before }}>
24+
After: <https://github.com/${{ github.repository }}/commit/${{ github.event.after }}|${{ github.event.after }}>
25+
SLACK_USERNAME: nodejs-bot
26+
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}

‎test/.eslintrc.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ rules:
88
no-var: error
99
prefer-const: error
1010
symbol-description: off
11-
multiline-comment-style: ["error", "separate-lines"]
11+
multiline-comment-style: ["error", "separate-lines"]
1212

1313
no-restricted-syntax:
1414
# Config copied from .eslintrc.js

0 commit comments

Comments
 (0)
Please sign in to comment.