Skip to content

Commit 36d065b

Browse files
authored
put diff listing back (#16457)
1 parent 85a62c9 commit 36d065b

File tree

1 file changed

+16
-15
lines changed

1 file changed

+16
-15
lines changed

.github/workflows/test.yml

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,15 @@ jobs:
3131
fail-fast: false
3232
matrix:
3333
# The same array lives in test-windows.yml, so make any updates there too.
34-
test-group: [
34+
test-group:
35+
[
3536
content,
3637
graphql,
3738
meta,
3839
rendering,
3940
routing,
4041
unit,
41-
# linting,
42+
linting,
4243
translations,
4344
]
4445
steps:
@@ -101,20 +102,20 @@ jobs:
101102
- name: Checkout LFS objects
102103
run: git lfs checkout
103104

104-
# - name: Gather files changed
105-
# uses: trilom/file-changes-action@a6ca26c14274c33b15e6499323aac178af06ad4b
106-
# id: get_diff_files
107-
# with:
108-
# # So that `steps.get_diff_files.outputs.files` becomes
109-
# # a string like `foo.js path/bar.md`
110-
# output: ' '
105+
- name: Gather files changed
106+
uses: trilom/file-changes-action@a6ca26c14274c33b15e6499323aac178af06ad4b
107+
id: get_diff_files
108+
with:
109+
# So that `steps.get_diff_files.outputs.files` becomes
110+
# a string like `foo.js path/bar.md`
111+
output: ' '
111112

112-
# - name: Insight into changed files
113-
# run: |
113+
- name: Insight into changed files
114+
run: |
114115
115-
# # Must to do this because the list of files can be HUGE. Especially
116-
# # in a repo-sync when there are lots of translation files involved.
117-
# echo "${{ steps.get_diff_files.outputs.files }}" > get_diff_files.txt
116+
# Must to do this because the list of files can be HUGE. Especially
117+
# in a repo-sync when there are lots of translation files involved.
118+
echo "${{ steps.get_diff_files.outputs.files }}" > get_diff_files.txt
118119
119120
- name: Setup node
120121
uses: actions/setup-node@1f8c6b94b26d0feae1e387ca63ccbdc44d27b561
@@ -136,6 +137,6 @@ jobs:
136137

137138
- name: Run tests
138139
env:
139-
# DIFF_FILE: get_diff_files.txt
140+
DIFF_FILE: get_diff_files.txt
140141
CHANGELOG_CACHE_FILE_PATH: tests/fixtures/changelog-feed.json
141142
run: npm test -- tests/${{ matrix.test-group }}/

0 commit comments

Comments
 (0)