@@ -31,14 +31,15 @@ jobs:
31
31
fail-fast : false
32
32
matrix :
33
33
# The same array lives in test-windows.yml, so make any updates there too.
34
- test-group : [
34
+ test-group :
35
+ [
35
36
content,
36
37
graphql,
37
38
meta,
38
39
rendering,
39
40
routing,
40
41
unit,
41
- # linting,
42
+ linting,
42
43
translations,
43
44
]
44
45
steps :
@@ -101,20 +102,20 @@ jobs:
101
102
- name : Checkout LFS objects
102
103
run : git lfs checkout
103
104
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 : ' '
111
112
112
- # - name: Insight into changed files
113
- # run: |
113
+ - name : Insight into changed files
114
+ run : |
114
115
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
118
119
119
120
- name : Setup node
120
121
uses : actions/setup-node@1f8c6b94b26d0feae1e387ca63ccbdc44d27b561
@@ -136,6 +137,6 @@ jobs:
136
137
137
138
- name : Run tests
138
139
env :
139
- # DIFF_FILE: get_diff_files.txt
140
+ DIFF_FILE : get_diff_files.txt
140
141
CHANGELOG_CACHE_FILE_PATH : tests/fixtures/changelog-feed.json
141
142
run : npm test -- tests/${{ matrix.test-group }}/
0 commit comments